mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
48a056b051
* docs: modify layout style * docs: modify nav padding * docs: update style * feat: update * docs: upadte * docs: update * docs: modify layout style * docs: update style * feat: update * docs: upadte * docs: update * docs: update * docs: update * docs: remove empty script * docs: update --------- Co-authored-by: kooriookami <bingshuanglingluo@163.com> Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>
35 lines
592 B
SCSS
35 lines
592 B
SCSS
@use '../mixins' as *;
|
|
@use './table-of-content';
|
|
|
|
.doc-content-wrapper {
|
|
--vp-content-width: 800px;
|
|
|
|
padding: 32px 24px;
|
|
|
|
.doc-content-container {
|
|
.doc-content {
|
|
width: 100%;
|
|
}
|
|
|
|
@include respond-to('xxl') {
|
|
min-width: var(--vp-content-width);
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@include respond-to('md') {
|
|
padding: 48px 32px;
|
|
}
|
|
@include respond-to('lg') {
|
|
padding: 48px 32px;
|
|
}
|
|
@include respond-to('xxl') {
|
|
padding: 64px 0 48px 64px;
|
|
display: flex;
|
|
}
|
|
@include respond-to('max') {
|
|
padding: 64px 0 48px 64px;
|
|
display: flex;
|
|
}
|
|
}
|