5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-04 01:31:54 +08:00

Fix container size (#1616)

This commit is contained in:
Lea Anthony 2022-07-20 21:28:53 +10:00 committed by GitHub
parent 29912785fa
commit c9a7d3f520
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ html[data-theme="light"] .button--secondary {
--ifm-color-primary-lightest: rgb(146, 224, 208); --ifm-color-primary-lightest: rgb(146, 224, 208);
--ifm-code-font-size: 95%; --ifm-code-font-size: 95%;
--ifm-button-color: white; --ifm-button-color: white;
--ifm-container-width-xl: 50%; --ifm-container-width-xl: 95%;
--ifm-font-color-base-inverse: #df0000; --ifm-font-color-base-inverse: #df0000;
} }
@ -45,14 +45,15 @@ html[data-theme="light"] .button--secondary {
counter-reset: line-number; counter-reset: line-number;
} }
.container { .carousel-root {
padding-left: 2%; padding-left: 2%;
max-width: 1400px; max-width: 1400px;
width: 85%; width: 85%;
margin: 0 auto;
} }
@media screen and (max-width: 576px) { @media screen and (max-width: 576px) {
.container { .carousel-root {
padding-left: 2%; padding-left: 2%;
width: 100%; width: 100%;
} }
@ -60,7 +61,7 @@ html[data-theme="light"] .button--secondary {
@media screen and (max-width: 966px) { @media screen and (max-width: 966px) {
.container { .carousel-root {
padding-left: 2%; padding-left: 2%;
width: 90%; width: 90%;
} }