mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-26 19:49:26 +01:00
17 lines
213 B
SCSS
17 lines
213 B
SCSS
|
@import 'variables';
|
||
|
|
||
|
.wrapper {
|
||
|
@media (min-width: $break-point--small) {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.sidebar {
|
||
|
flex: 0 0 25%;
|
||
|
}
|
||
|
|
||
|
.main {
|
||
|
flex: 0 0 70%;
|
||
|
}
|