mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
28 lines
398 B
SCSS
28 lines
398 B
SCSS
@import './styles/variables';
|
|
|
|
.app {
|
|
height: 100%;
|
|
|
|
// for sticky footer
|
|
display: flex;
|
|
min-height: calc(100vh - #{$page-frame * 2});
|
|
flex-direction: column;
|
|
}
|
|
|
|
.main {
|
|
flex: 1;
|
|
}
|
|
|
|
.loader {
|
|
text-align: center;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
margin-top: 25vh;
|
|
|
|
> div {
|
|
width: 100%;
|
|
}
|
|
}
|