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

37 lines
645 B

.icon-links {
display: flex;
flex-direction: row;
align-items: center;
}
.icon-link {
display: inline-flex;
align-items: center;
justify-content: center;
width: 2rem;
height: 2rem;
margin: 0 .25rem;
color: $text-muted;
background-color: $gray-200;
border: none;
border-radius: 50%;
cursor: pointer;
transition: all 0.1s ease;
&: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;
}
}
}