mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
17 lines
271 B
SCSS
17 lines
271 B
SCSS
@import '../../styles/variables';
|
|
|
|
.content {
|
|
padding: 0 $spacer / 1.5;
|
|
max-width: 47rem;
|
|
margin: 0 auto;
|
|
|
|
@media (min-width: $break-point--small) {
|
|
padding: 0 $spacer;
|
|
}
|
|
}
|
|
|
|
.wide {
|
|
composes: content;
|
|
max-width: $break-point--large;
|
|
}
|