element-plus/docs/.vitepress/vitepress/styles/content/doc-content.scss
Xc 48a056b051
docs: modify layout style (#10514)
* 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>
2024-02-19 20:10:44 +08:00

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;
}
}