mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
8583c70fdc
* feat(theme-chalk): use @use instead of @import & remove /**/ comment * refactor(theme-chalk): refactor scss with @use module * fix(docs): scss in docs toggle to '@use' * docs: add custom theme on demand * docs: add unplugin-element-plus
27 lines
489 B
SCSS
27 lines
489 B
SCSS
@use '../mixins' as *;
|
|
@use './table-of-content';
|
|
|
|
.doc-content-wrapper {
|
|
--toc-width: 144px;
|
|
padding: 32px 24px 96px;
|
|
.doc-content-container {
|
|
max-width: 60rem;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
@include respond-to('md') {
|
|
padding: 48px 32px 96px;
|
|
}
|
|
@include respond-to('lg') {
|
|
padding: 64px 64px 96px;
|
|
}
|
|
@include respond-to('xlg') {
|
|
padding: 64px 0 96px 64px;
|
|
display: flex;
|
|
.doc-content-container {
|
|
min-width: 38.75rem;
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|