Skip to content

Commit 86efde8

Browse files
Fix notebook demo
1 parent bc359e9 commit 86efde8

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

css-gap-decorations/notebook.html

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@
2323
grid-template-columns: 1fr 2fr;
2424
grid-template-rows: repeat(30, 1fr);
2525
gap: 2px;
26+
2627
gap-rule-paint-order: column-over-row;
27-
2828
column-rule: solid black 1.5px;
2929
column-rule-break: spanning-item;
30-
column-rule-outset: calc(-80vmin / 8 - 0.5vmin);
3130
row-rule:
3231
/* header lines */
33-
repeat(3, solid #a7c1d9 1px),
32+
repeat(3, 1px solid #a7c1d9),
3433
/* thick line under notes sections */
35-
solid #333 2px,
34+
2px solid #333,
3635
/* body lines */
37-
repeat(auto, solid #a7c1d9 1px),
36+
repeat(auto, 1px solid #a7c1d9),
3837
/* thick line above summary */
39-
solid #333 2px,
38+
2px solid #333,
4039
/* footer lines */
41-
repeat(3, solid #a7c1d9 1px);
40+
repeat(3, 1px solid #a7c1d9);
41+
row-rule-break: none;
4242

4343
background: #fdf8e3;
4444
height: 80vmin;
@@ -47,7 +47,6 @@
4747
border-radius: 0.5vmin;
4848
box-shadow: 0 0 1vmin 0 #0003;
4949
position: relative;
50-
5150
line-height: calc(80vmin / 30);
5251
}
5352

0 commit comments

Comments
 (0)