Skip to content

Commit 0e6e036

Browse files
committed
Add trailing semicolon to CSS rules missing one
Some CSS rules were missing a trailing semicolon. Let's add this where it was missing.
1 parent f9c43be commit 0e6e036

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

theme/reference.css

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ main > .rule {
470470
2.5em * var(--h2-em-mult) - 16px
471471
/* half of the font size difference */
472472
+ (1em * var(--h2-em-mult) - 1em) / 2
473-
)
473+
);
474474
}
475475
.rule:has(+ h3, + .tests-popup + h3) {
476476
/* multiplying by this turns h3's em into .rule's em*/
@@ -484,7 +484,7 @@ main > .rule {
484484
2.5em * var(--h3-em-mult) - 16px
485485
/* half of the font size difference */
486486
+ (1em * var(--h3-em-mult) - 1em) / 2
487-
)
487+
);
488488
}
489489

490490
.rule:has(+ h4, + .tests-popup + h4) {
@@ -499,7 +499,7 @@ main > .rule {
499499
2em * var(--h4-em-mult) - 16px
500500
/* half of the font size difference */
501501
+ (1em * var(--h4-em-mult) - 1em) / 2
502-
)
502+
);
503503
}
504504

505505
.rule:has(+ h5, + .tests-popup + h5) {
@@ -514,7 +514,7 @@ main > .rule {
514514
2em * var(--h5-em-mult) - 16px
515515
/* half of the font size difference */
516516
+ (1em * var(--h5-em-mult) - 1em) / 2
517-
)
517+
);
518518
}
519519

520520
.rule:has(+ h6, + .tests-popup + h6) {
@@ -529,7 +529,7 @@ main > .rule {
529529
2em * var(--h6-em-mult) - 16px
530530
/* half of the font size difference */
531531
+ (1em * var(--h6-em-mult) - 1em) / 2
532-
)
532+
);
533533
}
534534

535535
/* Sets the color for [!HISTORY] blockquote admonitions. */
@@ -597,10 +597,10 @@ main > .rule {
597597
}
598598

599599
.light .grammar-literal {
600-
background-color: #fafafa
600+
background-color: #fafafa;
601601
}
602602
.rust .grammar-literal {
603-
background-color: #dedede
603+
background-color: #dedede;
604604
}
605605
.coal .grammar-literal {
606606
background-color: #1d1f21;
@@ -609,7 +609,7 @@ main > .rule {
609609
background-color: #1d1f21;
610610
}
611611
.ayu .grammar-literal {
612-
background-color: #191f26
612+
background-color: #191f26;
613613
}
614614

615615
.grammar-production:target, .railroad-production:target {

0 commit comments

Comments
 (0)