mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-13 17:05:47 +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>
39 lines
856 B
SCSS
39 lines
856 B
SCSS
@use './mixins' as *;
|
|
@use './vars' as *;
|
|
@use './content/doc-content';
|
|
@use './content/hero-content';
|
|
@use './content/tag-content';
|
|
|
|
.page-content {
|
|
outline: none;
|
|
@include respond-to('lg') {
|
|
padding-top: var(--nav-height);
|
|
|
|
&.has-sidebar {
|
|
padding-left: calc(var(--sidebar-width-sm) + 10px);
|
|
@include respond-to('xlg') {
|
|
padding-left: calc(var(--vp-sidebar-width-small));
|
|
}
|
|
@include respond-to('xxl') {
|
|
padding-left: calc(var(--vp-sidebar-width-small) + 32px);
|
|
}
|
|
@include respond-to('max') {
|
|
padding-left: calc(var(--vp-sidebar-width-small) + 48px);
|
|
}
|
|
}
|
|
}
|
|
|
|
.doc-content a {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
&.vp-link {
|
|
white-space: nowrap;
|
|
}
|
|
.link-icon {
|
|
margin-left: 0.25rem;
|
|
height: 1em;
|
|
width: 1em;
|
|
}
|
|
}
|
|
}
|