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/assets/css/components/_chain.scss

74 lines
1.2 KiB

.chain {
@extend %paper;
display: flex;
justify-conntent: space-around;
align-items: flex-start;
padding: explorer-size(0) 0;
&__container {
flex: 1;
text-align: center;
&--secondary { display: none; }
&--tertiary { display: none; }
}
&__image {
display: inline-block;
height: explorer-size(0);
margin-bottom: explorer-size(-2);
}
&__title {
@include explorer-typography("caption");
&--data { color: explorer-color("blue", "500"); }
}
}
@media (min-width: $explorer-breakpoint-sm) {
.chain {
&__image {
height: explorer-size(1);
}
&__container {
&--secondary { display: block; }
}
}
}
@media (min-width: $explorer-breakpoint-md) {
.chain {
&__image {
height: explorer-size(1);
}
&__container {
&--secondary { display: none; }
}
}
}
@media (min-width: $explorer-breakpoint-lg) {
.chain {
&__image {
height: explorer-size(1);
}
&__container {
&--secondary { display: block; }
}
}
}
@media (min-width: $explorer-breakpoint-xl) {
.chain {
&__image {
height: explorer-size(1);
}
&__container {
&--tertiary { display: block; }
}
}
}