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/_container.scss

22 lines
725 B

%explorer-container-height { min-height: calc(100vh - #{$explorer-header-small} - #{explorer-size(-1) * 2}); }
@media (orientation: landscape) and (max-height: $explorer-breakpoint-landscape) {
%explorer-container-height { min-height: calc(100vh - #{$explorer-header-medium} - #{explorer-size(-1) * 2}); }
}
@media (min-width: $explorer-breakpoint-landscape) {
%explorer-container-height { min-height: calc(100vh - #{$explorer-header-large} - #{explorer-size(-1) * 2}); }
}
.container {
@extend %explorer-container-height;
background: explorer-color("slate", "500");
padding-top: explorer-size(-1);
padding-bottom: explorer-size(-1);
&__section {
display: block;
padding: 0 explorer-size(-2);
}
}