Different separator widths for different columns

merge-requests/30/head
Bob Mottram 2020-11-19 20:52:09 +00:00
parent cc179a5fdb
commit 8e45330409
2 changed files with 7 additions and 3 deletions

View File

@ -132,6 +132,8 @@
--post-separator-margin-top: 0;
--post-separator-margin-bottom: 0;
--post-separator-width: 95%;
--separator-width-left: 95%;
--separator-width-right: 95%;
--post-separator-height: 1px;
--header-vertical-offset: 0;
--profile-background-height: 25vw;
@ -189,7 +191,7 @@ body, html {
background-color: var(--column-left-color);
padding-top: var(--post-separator-margin-top);
padding-bottom: var(--post-separator-margin-bottom);
width: var(--post-separator-width);
width: var(--separator-width-left);
height: var(--post-separator-height);
display: block;
}
@ -198,7 +200,7 @@ body, html {
background-color: var(--column-left-color);
padding-top: var(--post-separator-margin-top);
padding-bottom: var(--post-separator-margin-bottom);
width: var(--post-separator-width);
width: var(--separator-width-right);
height: var(--post-separator-height);
display: block;
}

View File

@ -35,7 +35,9 @@
"font-size-dropdown-header": "30px",
"post-separator-margin-top": "1%",
"post-separator-margin-bottom": "1%",
"post-separator-width": "95%",
"post-separator-width": "96%",
"separator-width-left": "98%",
"separator-width-right": "98%",
"post-separator-height": "1px",
"column-left-border-width": "0px",
"column-right-border-width": "0px",