mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-06 10:38:31 +08:00
22 lines
491 B
SCSS
22 lines
491 B
SCSS
|
@import './mixins';
|
||
|
@import './content/doc-content';
|
||
|
@import './content/hero-content';
|
||
|
|
||
|
.page-content {
|
||
|
@include respond-to('lg') {
|
||
|
padding-top: var(--nav-height);
|
||
|
|
||
|
&.has-sidebar {
|
||
|
padding-left: var(--sidebar-width-sm);
|
||
|
@include respond-to('xlg') {
|
||
|
padding-left: var(--sidebar-width-md);
|
||
|
}
|
||
|
@include respond-to('xxl') {
|
||
|
padding-left: calc(
|
||
|
(100vw - var(--app-max-width)) / 2 + var(--sidebar-width-md)
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|