Skip to content

Commit b36ae14

Browse files
committed
fix: color of hr elements in markdown
Fixes that the `hr` elements that were being generated in the markdown didn't match the rest of the app.
1 parent e52a96e commit b36ae14

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

report-app/src/styles.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,13 @@ html.dark-mode {
6767
box-sizing: border-box;
6868
}
6969

70+
// These can show up in generated markdown.
71+
hr {
72+
border: none;
73+
background: none;
74+
border-top: solid 1px var(--border-color);
75+
}
76+
7077
@include buttons.button-styles;
7178
@include inputs.input-styles;
7279
@include callouts.callout-styles;

0 commit comments

Comments
 (0)