Skip to content

Commit 55af3e3

Browse files
committed
Fix see also border on light theme
1 parent 6be8c3b commit 55af3e3

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

web/src/styles/custom.css

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,17 @@
3737

3838
.see-also-section {
3939
margin-top: 4rem;
40-
border-top: 1px solid rgba(255, 255, 255, 0.1);
4140
padding-top: 1.5rem;
4241
}
4342

43+
:root[data-theme='dark'] .see-also-section {
44+
border-top: 1px solid rgba(255, 255, 255, 0.1);
45+
}
46+
47+
:root[data-theme='light'] .see-also-section {
48+
border-top: 1px solid rgba(0, 0, 0, 0.1);
49+
}
50+
4451
.code-example {
4552
/*margin-bottom: 1.5rem;*/
4653
}

0 commit comments

Comments
 (0)