Blockchain explorer for Ethereum based network and a tool for inspecting and analyzing EVM based blockchains.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
blockscout/apps/block_scout_web/assets/css/components/_icon-link.scss

36 lines
646 B

.icon-links {
display: flex;
flex-direction: row;
align-items: center;
}
.icon-link {
align-items: center;
background-color: $gray-200;
border-radius: 50%;
border: none;
color: $text-muted;
cursor: pointer;
display: inline-flex;
height: 2rem;
justify-content: center;
margin: 0 0.25rem;
transition: all 0.1s ease;
width: 2rem;
&:hover {
background-color: darken($primary, 20%);
color: $white;
text-decoration: none;
}
&.icon-link-primary {
color: $footer-text-color;
background-color: rgba($white, 0.25);
&:hover {
background-color: $white;
color: $primary;
}
}
}