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

55 lines
743 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: 90px;
}
.content-header {
display: flex;
position: fixed;
width: 100%;
}
.container {
&__section {
display: block;
padding: 0 15px;
margin: 0 10px;
}
}
@media (min-width: 768px) {
.content-header {
width: calc(100% - 200px);
}
.container {
&__section {
&--partitioned {
display: flex;
justify-content: space-between;
align-items: stretch;
}
}
&__subsection {
flex: 1;
margin-right: 10px;
& + & { margin-left: 5px; }
}
}
}