1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

Fix profile image (#1172)

* tinker

* use !important
This commit is contained in:
Matthias Kretschmann 2022-03-09 14:12:48 +00:00 committed by GitHub
parent ccb50b56e5
commit cfd31905dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View File

@ -14,7 +14,7 @@ export default function Blockies({
return (
<img
className={`${styles.blockies} ${className || ''}`}
className={`${className || ''} ${styles.blockies} `}
src={blockies}
alt="Blockies"
aria-hidden="true"

View File

@ -16,10 +16,13 @@
}
}
/* Sledgehammer !important cause Next.js reordering of styles is clashing with
our Blockies implementation.
See https://github.com/oceanprotocol/market/issues/1143 */
.imageWrap,
.image {
width: 96px;
height: 96px;
width: 96px !important;
height: 96px !important;
}
.imageWrap {