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/explorer/_header.scss

20 lines
828 B

$explorer-header-small: 48px;
$explorer-header-medium: 56px;
$explorer-header-large: 64px;
%explorer-header-height { height: $explorer-header-small; }
%explorer-header-square-width { width: $explorer-header-small; }
%explorer-header-min-height { min-height: $explorer-header-small; }
@media (orientation: landscape) and (max-height: $explorer-breakpoint-landscape) {
%explorer-header-height { height: $explorer-header-medium; }
%explorer-header-square-width { width: $explorer-header-medium; }
%explorer-header-min-height { min-height: $explorer-header-medium; }
}
@media (min-width: $explorer-breakpoint-landscape) {
%explorer-header-height { height: $explorer-header-large; }
%explorer-header-square-width { width: $explorer-header-large; }
%explorer-header-min-height { min-height: $explorer-header-large; }
}