fix(site): fix the issue the official website is not fully displayed in small screen sizes
This commit is contained in:
parent
9ac66f3922
commit
8f2723ddd3
|
@ -816,7 +816,6 @@ export default defineComponent({
|
|||
flex: 1;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
min-width: 680px;
|
||||
padding: 0 40px;
|
||||
}
|
||||
|
||||
|
@ -837,7 +836,6 @@ export default defineComponent({
|
|||
|
||||
:deep(> .tiny-tabs__header) {
|
||||
position: sticky;
|
||||
top: 90px;
|
||||
z-index: var(--docs-tabs-header-zindex);
|
||||
background-color: #fff;
|
||||
|
||||
|
@ -974,6 +972,10 @@ export default defineComponent({
|
|||
column-gap: 16px;
|
||||
}
|
||||
|
||||
.docs-content-main {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.cmp-container {
|
||||
p {
|
||||
font-size: 16px;
|
||||
|
|
|
@ -196,9 +196,12 @@ export default defineComponent({
|
|||
.content-layout {
|
||||
display: flex;
|
||||
--layout-tree-menu-input-height: 32px;
|
||||
--layout-content-main-min-width: 600px;
|
||||
--layout-content-main-min-width: 200px;
|
||||
--layout-content-main-max-width: 1000px;
|
||||
}
|
||||
@media screen and (max-width: 640px) {
|
||||
--layout-content-main-min-width: 600px;
|
||||
}
|
||||
|
||||
.tiny-tooltip.tiny-tooltip__popper.is-light.docs-tooltip {
|
||||
border: none;
|
||||
|
|
Loading…
Reference in New Issue