Skip to content

Commit 4da9265

Browse files
committed
Line: Extend all horizontal lines into the gutter
1 parent ae84628 commit 4da9265

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

assets/css/v2/style.css

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1087,6 +1087,9 @@ blockquote ul {
10871087
white-space: nowrap;
10881088
position: relative;
10891089

1090+
width: calc(100% + 2rem);
1091+
margin-left: -1rem;
1092+
10901093
&::after {
10911094
content: "";
10921095
position: absolute;
@@ -1190,6 +1193,11 @@ blockquote ul {
11901193
.tab-content {
11911194
border-bottom: 1px solid black;
11921195
padding-bottom: 1rem;
1196+
padding-left: 1rem;
1197+
padding-right: 1rem;
1198+
1199+
width: calc(100% + 2rem);
1200+
margin-left: -1rem;
11931201

11941202
.tab-pane {
11951203
display: none;
@@ -1332,7 +1340,10 @@ figure {
13321340

13331341
/* HR Lines */
13341342
hr {
1335-
width: 100%;
1343+
/* Move to gutter */
1344+
width: calc(100% + 2rem);
1345+
margin-left: -1rem;
1346+
13361347
border: 1px solid var(--color-divider);
13371348
}
13381349

0 commit comments

Comments
 (0)