1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-02 14:15:06 +01:00
metamask-extension/ui/components/ui/url-icon/index.scss
2021-06-06 12:45:27 -02:30

39 lines
622 B
SCSS

.url-icon {
width: 24px;
height: 24px;
background-position: center;
border-radius: 50%;
background-color: $white;
box-shadow: 0 2px 4px 0 rgba($black, 0.24);
flex: 0 0 auto;
-moz-animation: fadein 1s;
/* Firefox */
-webkit-animation: fadein 1s;
/* Safari and Chrome */
-o-animation: fadein 1s;
&__fallback {
width: 24px;
height: 24px;
border-radius: 50%;
background: #bbc0c5;
flex: 0 1 auto;
display: flex;
justify-content: center;
align-items: center;
padding-top: 2px;
}
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}