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/explorer_web/assets/css/_content.scss

62 lines
774 B

.content-wrapper {
display: flex;
align-items: stretch;
min-height: 100vh;
}
#content {
flex-grow: 1;
display: flex;
flex-direction: column;
}
.content-container {
flex-grow: 1;
padding-top: 85px;
}
.content-header {
display: flex;
position: fixed;
width: 100%;
}
.container {
&__section {
display: block;
padding: 0 15px;
margin: 0 10px;
7 years ago
}
}
7 years ago
@media (min-width: 768px) {
7 years ago
.content-header {
width: 100%;
}
.content-container {
padding-top: 155px;
7 years ago
}
.container {
&__section {
&--partitioned {
display: flex;
justify-content: space-between;
align-items: stretch;
7 years ago
}
}
7 years ago
&__subsection {
flex: 1;
&-chain {
margin: 10px 5px;
}
7 years ago
}
}
}