holygrail2 1.1.94 → 1.1.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/scss/base/_helpers.scss
CHANGED
|
@@ -250,10 +250,10 @@ b {
|
|
|
250
250
|
hr {
|
|
251
251
|
width: 100%;
|
|
252
252
|
margin: 0;
|
|
253
|
-
border-top:
|
|
254
|
-
border-bottom:
|
|
255
|
-
border-left:
|
|
256
|
-
border-right:
|
|
253
|
+
border-top: var(--line-width) solid $c-primary;
|
|
254
|
+
border-bottom: var(--line-width) solid transparent;
|
|
255
|
+
border-left: var(--line-width) solid transparent;
|
|
256
|
+
border-right: var(--line-width) solid transparent;
|
|
257
257
|
}
|
|
258
258
|
.only-mobile {
|
|
259
259
|
display: inline-block;
|
package/scss/elements/_tabs.scss
CHANGED
|
@@ -101,6 +101,7 @@
|
|
|
101
101
|
display: block;
|
|
102
102
|
margin: 0;
|
|
103
103
|
padding-block: 8px;
|
|
104
|
+
list-style: none;
|
|
104
105
|
|
|
105
106
|
a,
|
|
106
107
|
span,
|
|
@@ -180,6 +181,9 @@
|
|
|
180
181
|
li {
|
|
181
182
|
display: block;
|
|
182
183
|
margin: 0;
|
|
184
|
+
&::after {
|
|
185
|
+
display: none;
|
|
186
|
+
}
|
|
183
187
|
|
|
184
188
|
a,
|
|
185
189
|
span,
|
|
@@ -207,9 +211,7 @@
|
|
|
207
211
|
}
|
|
208
212
|
}
|
|
209
213
|
|
|
210
|
-
|
|
211
|
-
display: none;
|
|
212
|
-
}
|
|
214
|
+
|
|
213
215
|
}
|
|
214
216
|
|
|
215
217
|
&.tabs-resetfirst ul li:first-child a {
|