diff --git a/client/src/components/molecules/VersionNumbers/VersionTable.module.scss b/client/src/components/molecules/VersionNumbers/VersionTable.module.scss index 648a20d..d2f24ec 100644 --- a/client/src/components/molecules/VersionNumbers/VersionTable.module.scss +++ b/client/src/components/molecules/VersionNumbers/VersionTable.module.scss @@ -40,7 +40,10 @@ } a { - color: $brand-grey; + &, + code { + color: $brand-grey; + } &:hover, &:focus { diff --git a/client/src/routes/About.tsx b/client/src/routes/About.tsx index 45b488c..5d603e7 100644 --- a/client/src/routes/About.tsx +++ b/client/src/routes/About.tsx @@ -18,24 +18,34 @@ const About = () => { >

- Commons is built on top of the Ocean{' '} + Commons allows you to access thousands of datasets for free + that have been registered on the Ocean Protocol{' '} - {market.network} network + {market.network} Network {' '} - and is targeted at enthusiastic data scientists with some - crypto experience. It can be used with any Web3-capable - browser, like Firefox with MetaMask installed. + and it is targeted at enthusiastic data scientists with some + crypto experience. If you are looking for quality data, you + can easily use the Commons to search for and find publicly + available datasets that are free of charge. If you are + interested in sharing your data, you can use the Commons to + publish data into the {market.network} Network.

diff --git a/client/src/styles/global.scss b/client/src/styles/global.scss index f841d04..7b4c20b 100644 --- a/client/src/styles/global.scss +++ b/client/src/styles/global.scss @@ -299,11 +299,15 @@ samp { padding-right: .15rem; } +a > code { + color: $brand-pink; +} + pre { display: block; margin-bottom: $spacer; padding: 0; - background: $brand-black; + background: lighten($brand-grey-lighter, 5%); // make 'em scrollable overflow: auto;