mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
ca27cb051c
* feat(docs): enable mirror site redirection - Allow zh-CN users to redirect to the mirror site * Update content max width
27 lines
490 B
SCSS
27 lines
490 B
SCSS
@import '../mixins';
|
|
@import './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;
|
|
}
|
|
}
|
|
}
|