mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 20:08:54 +00:00
Fixed CSS to avoid content overflow
This commit is contained in:
parent
99c3988595
commit
ea1b64f3a9
5 changed files with 9 additions and 9 deletions
|
@ -3059,7 +3059,7 @@ body {
|
|||
max-width: 100%;
|
||||
opacity: 1;
|
||||
padding: 4.5em;
|
||||
width: 90em;
|
||||
width: 100%;
|
||||
}
|
||||
body.is-menu-visible #wrapper {
|
||||
opacity: 0.15;
|
||||
|
@ -3090,14 +3090,14 @@ body.single #wrapper {
|
|||
flex-grow: 1;
|
||||
flex: 1;
|
||||
-ms-flex: 1;
|
||||
width: 100%;
|
||||
min-width: 70%;
|
||||
}
|
||||
|
||||
/* Sidebar */
|
||||
#sidebar {
|
||||
margin-right: 3em;
|
||||
min-width: 22em;
|
||||
width: 22em;
|
||||
min-width: 20%;
|
||||
width: 25%;
|
||||
}
|
||||
#sidebar > * {
|
||||
border-top: solid 1px rgba(160, 160, 160, 0.3);
|
||||
|
|
2
assets/css/main.min.css
vendored
2
assets/css/main.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -10,5 +10,5 @@
|
|||
@include vendor('flex-grow', '1');
|
||||
flex: 1;
|
||||
-ms-flex: 1;
|
||||
width: 100%;
|
||||
min-width: 70%;
|
||||
}
|
|
@ -8,8 +8,8 @@
|
|||
|
||||
#sidebar {
|
||||
margin-right: _size(section-spacing);
|
||||
min-width: 22em;
|
||||
width: 22em;
|
||||
min-width: 20%;
|
||||
width: 25%;
|
||||
|
||||
> * {
|
||||
border-top: solid 1px _palette(border);
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
max-width: 100%;
|
||||
opacity: 1;
|
||||
padding: (_size(section-spacing) * 1.5);
|
||||
width: 90em;
|
||||
width: 100%;
|
||||
|
||||
body.is-menu-visible & {
|
||||
opacity: 0.15;
|
||||
|
|
Loading…
Add table
Reference in a new issue