@byuhbll/components 5.0.0-beta.0 → 5.0.0-beta.2
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/esm2022/lib/hbll-footer/hbll-footer.component.mjs +3 -3
- package/esm2022/lib/hbll-header/hbll-header.component.mjs +3 -3
- package/esm2022/lib/snackbar/snackbar.component.mjs +3 -3
- package/esm2022/lib/ss-search-bar/advanced-search/advanced-search.component.mjs +3 -3
- package/esm2022/lib/ss-search-bar/date-range/date-range.component.mjs +3 -3
- package/esm2022/lib/ss-search-bar/simple-search/simple-search.component.mjs +3 -3
- package/esm2022/lib/ss-search-bar/ss-search-bar.component.mjs +3 -3
- package/fesm2022/byuhbll-components.mjs +14 -14
- package/fesm2022/byuhbll-components.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/scss/base.scss +16 -20
package/package.json
CHANGED
package/styles/scss/base.scss
CHANGED
|
@@ -168,7 +168,7 @@ section {
|
|
|
168
168
|
body {
|
|
169
169
|
background: white;
|
|
170
170
|
line-height: 1.5;
|
|
171
|
-
font-size:
|
|
171
|
+
font-size: 1rem;
|
|
172
172
|
font-family:
|
|
173
173
|
Source Sans Pro,
|
|
174
174
|
Helvetica Neue,
|
|
@@ -178,10 +178,6 @@ body {
|
|
|
178
178
|
color: #404040;
|
|
179
179
|
}
|
|
180
180
|
|
|
181
|
-
// html {
|
|
182
|
-
// font-size: 62.5%;
|
|
183
|
-
// }
|
|
184
|
-
|
|
185
181
|
table {
|
|
186
182
|
border-collapse: separate;
|
|
187
183
|
border-spacing: 0;
|
|
@@ -238,20 +234,20 @@ ul {
|
|
|
238
234
|
}
|
|
239
235
|
|
|
240
236
|
/* Change site size on bigger browser sizes */
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
237
|
+
@media screen and (min-width: 1400px) {
|
|
238
|
+
html {
|
|
239
|
+
font-size: 112%;
|
|
240
|
+
}
|
|
241
|
+
}
|
|
246
242
|
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
243
|
+
@media screen and (min-width: 1720px) {
|
|
244
|
+
html {
|
|
245
|
+
font-size: 120%;
|
|
246
|
+
}
|
|
247
|
+
}
|
|
252
248
|
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
249
|
+
@media screen and (min-width: 2000px) {
|
|
250
|
+
html {
|
|
251
|
+
font-size: 128%;
|
|
252
|
+
}
|
|
253
|
+
}
|