element-plus/docs/.vitepress/vitepress/styles/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

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