mirror of
https://github.com/strapi/strapi.git
synced 2025-08-05 07:16:02 +00:00
12 lines
300 B
SCSS
12 lines
300 B
SCSS
/* Import */
|
|
@import '../../styles/variables/variables';
|
|
|
|
.content { /* stylelint-ignore */
|
|
background: $content-background;
|
|
min-height: calc(100vh - #{$header-height});
|
|
width: calc(100vw - #{$left-menu-width});
|
|
margin-top: $header-height;
|
|
margin-left: $left-menu-width;
|
|
padding: 3rem;
|
|
}
|