File tree Expand file tree Collapse file tree 3 files changed +21
-7
lines changed Expand file tree Collapse file tree 3 files changed +21
-7
lines changed Original file line number Diff line number Diff line change 58
58
}
59
59
}
60
60
61
- & .footer-hr {
62
- border : 0 ;
63
- border-bottom : 2px solid var (--color-gray-200 );
64
- margin : 0 ;
65
- }
66
-
67
61
& .footer-statement {
68
62
justify-content : space-between;
69
63
}
79
73
80
74
& .footer-spacer {
81
75
border : 0 ;
82
- border-top : 2px solid var (--color-gray-300 );
83
76
display : block;
84
77
height : 2px ;
85
78
}
Original file line number Diff line number Diff line change @@ -216,6 +216,14 @@ code {
216
216
font-family : var (--font-family-mono );
217
217
}
218
218
219
+ hr {
220
+ background : var (--color-gray-300 );
221
+ border : 1px var (--color-gray-300 );
222
+ margin : 35px 0px ;
223
+ border-radius : 1px ;
224
+ height : 2px ;
225
+ }
226
+
219
227
/*
220
228
@media (max-width: 1280px) and (min-width: 421px) {
221
229
body,
Original file line number Diff line number Diff line change
1
+ # CSS Global Styles
2
+
3
+ ## Element styles
4
+
5
+ All of the below are default element styles.
6
+
7
+ ### Horizontal Rule ` <hr> `
8
+
9
+ If you would like to add a break between content then you can use the pre-styled Horizontal Rule ` <hr> ` element.
10
+
11
+ ``` html
12
+ <hr >
13
+ ```
You can’t perform that action at this time.
0 commit comments