Skip to content

Commit

Permalink
fix right padding, avoid overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
henices committed Apr 14, 2023
1 parent a7f65eb commit 1ab4b9a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/code/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Base Root Settings
--cl-background: var(--background-color-h), var(--background-color-s), var(--background-color-l);
--cl-block-bullet-fix: 20px;
--ls-main-content-max-width: var(--cl-page-width, 1000px);
--ls-main-content-max-width-wide: var(--cl-page-max-width, 100%);
--ls-main-content-max-width-wide: var(--cl-page-max-width, 95%);
--ls-page-title-size: 28px;
--ls-left-sidebar-width: 200px;
--ls-right-sidebar-width: 30%;
Expand Down Expand Up @@ -313,7 +313,7 @@ Base Settings
/* Setting up the container view */
#main-content-container, .sidebar-item {
border-radius: var(--cl-border-max);
margin: 0 0px 5px 5px;
margin: 0px 0px 10px 5px;
box-shadow: var(--box-shadow-med);
border: 0px solid var(--ls-border-color);
padding-bottom: 1rem !important;
Expand Down Expand Up @@ -420,7 +420,7 @@ Typography Settings

/* Adjust padding between each block to give them a little breathing room */
.ls-block {
padding: 2px 0px;
padding: 2px 10px;
}


Expand Down Expand Up @@ -755,4 +755,4 @@ Parent Block Header Style
.block-body hr:is(:only-child) {
margin: 12px 0px !important;
border-top: 1.5px dashed hsl(var(--cl-text-color), 0.15);
}
}

0 comments on commit 1ab4b9a

Please sign in to comment.