Skip to content

Commit a48ed8a

Browse files
committed
feat: implement port of childboards section of threads view
1 parent 75f7445 commit a48ed8a

File tree

3 files changed

+840
-12
lines changed

3 files changed

+840
-12
lines changed

src/assets/scss/_global-components.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ img {
1616
}
1717

1818
h1, h2, h3, h4, h5, h6 {
19-
margin: 0;
2019
line-height: 1.5rem;
2120
font-style: normal;
2221
font-weight: normal;
@@ -31,6 +30,11 @@ h4 { font-size: 1.3125rem; } //Category Name, Board Name, Thread Name
3130
h5 { font-size: 1.125rem; } // Board Name (Front Page), Section Headers Board View
3231
h6 { font-size: 1rem; }
3332

33+
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td {
34+
margin: 0;
35+
padding: 0;
36+
}
37+
3438
a.button, .button, button, button:focus, .button:focus {
3539
border-radius: 3px;
3640
-webkit-border-radius: 3px;

src/assets/scss/_mixins.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@
2020
}
2121
}
2222

23+
@mixin break-max-mobile-tablet {
24+
@media screen and (max-width: #{$tablet}) {
25+
@content;
26+
}
27+
}
28+
2329
@mixin break-min-large {
2430
@media screen and (min-width: #{$large}) {
2531
@content;

0 commit comments

Comments
 (0)