24 lines
395 B
SCSS
24 lines
395 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;
|
|
}
|
|
}
|