Skip to content
Snippets Groups Projects
Commit 3baa68d9 authored by Kasper Seweryn's avatar Kasper Seweryn 🥞 Committed by Marge
Browse files

fix: fix hr height

Part-of: <!73>
parent 9de5f6f1
No related branches found
No related tags found
1 merge request!73fix: fix hr height
Pipeline #32811 passed with stages
in 2 minutes and 26 seconds
......@@ -50,17 +50,19 @@
// Horizontal rule
%hr {
padding: 8px 0 0 0;
margin: 0 0 8px 0;
border: none;
border-bottom: 1px solid var(--fw-border-color);
@include light-theme {
border-bottom: 2px solid var(--fw-gray-200);
--fw-border-color: var(--fw-gray-200);
}
@include dark-theme {
border-bottom: 2px solid var(--fw-gray-800);
--fw-border-color: var(--fw-gray-800);
}
padding: 8px 0 0 0;
margin: 0 0 8px 0;
border: none;
}
hr:not(.is-raw) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment