MyCrypto/common/components/ui/Identicon.scss
William O'Beirne 994fa03828 Add RSK network w/ network agnostic refactors (#1939)
* 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
2018-06-15 18:28:42 -05:00

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;
}
}