mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-13 11:36:45 +00:00
* Rsk network with checksum * Initial change from chainid everywhere to selectors * Fix ternary * Check in address book changes to lower case. Currently a little busted. * Fix validation * Fix tests. * Identicon back to SFC * Remove unnecessary prop * Paper Wallet Refactor (#1950) * Convert print wallet to save png image. Move all styles into CSS. * Fix re-print paper wallet with save modal * Address PR comments
25 lines
411 B
SCSS
25 lines
411 B
SCSS
.Identicon {
|
|
position: relative;
|
|
width: 4rem;
|
|
height: 4rem;
|
|
|
|
&-img {
|
|
display: block;
|
|
height: 100%;
|
|
width: 100%;
|
|
padding: 0px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
&-shadow {
|
|
position: absolute;
|
|
height: 100%;
|
|
width: 100%;
|
|
top: 0;
|
|
border-radius: 50%;
|
|
pointer-events: none;
|
|
box-shadow: 0 1px 2px rgba(#000, 0.15),
|
|
0 0 3px rgba(#000, 0.15) inset;
|
|
}
|
|
}
|