1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00
commons/client/src/App.module.scss

28 lines
398 B
SCSS
Raw Normal View History

2019-02-08 14:06:55 +01:00
@import './styles/variables';
2019-01-23 13:03:41 +01:00
.app {
height: 100%;
2019-02-08 14:06:55 +01:00
// for sticky footer
display: flex;
2019-02-08 14:06:55 +01:00
min-height: calc(100vh - #{$page-frame * 2});
flex-direction: column;
2019-02-08 14:06:55 +01:00
}
2019-02-08 14:06:55 +01:00
.main {
flex: 1;
2019-01-23 13:03:41 +01:00
}
2019-02-13 12:52:27 +01:00
.loader {
text-align: center;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
margin-top: 25vh;
> div {
width: 100%;
}
}