vuetify 3.5.16 → 3.5.17
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/dist/json/attributes.json +226 -30
- package/dist/json/importMap-labs.json +8 -4
- package/dist/json/importMap.json +126 -126
- package/dist/json/tags.json +54 -0
- package/dist/json/web-types.json +607 -84
- package/dist/vuetify-labs.css +2606 -2579
- package/dist/vuetify-labs.d.ts +742 -64
- package/dist/vuetify-labs.esm.js +356 -127
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +355 -126
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2393 -2367
- package/dist/vuetify.d.ts +127 -62
- package/dist/vuetify.esm.js +169 -101
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +168 -100
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +181 -178
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/index.d.mts +1 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs +8 -10
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VBanner/VBanner.css +1 -1
- package/lib/components/VBreadcrumbs/VBreadcrumbs.css +1 -1
- package/lib/components/VBtn/index.d.mts +1 -0
- package/lib/components/VBtnToggle/index.d.mts +1 -0
- package/lib/components/VCard/VCard.css +3 -3
- package/lib/components/VCarousel/VCarouselItem.mjs +1 -1
- package/lib/components/VCarousel/VCarouselItem.mjs.map +1 -1
- package/lib/components/VCarousel/index.d.mts +1 -0
- package/lib/components/VChip/VChip.css +1 -1
- package/lib/components/VChip/VChip.sass +1 -0
- package/lib/components/VChipGroup/index.d.mts +1 -0
- package/lib/components/VCombobox/VCombobox.mjs +8 -10
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.mjs +10 -0
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VDialog/VDialog.mjs +6 -2
- package/lib/components/VDialog/VDialog.mjs.map +1 -1
- package/lib/components/VDialog/__test__/VDialog.spec.cy.mjs +39 -0
- package/lib/components/VDialog/__test__/VDialog.spec.cy.mjs.map +1 -0
- package/lib/components/VDialog/index.d.mts +4 -10
- package/lib/components/VFileInput/VFileInput.mjs +1 -1
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VFileInput/index.d.mts +17 -5
- package/lib/components/VInput/VInput.mjs +6 -1
- package/lib/components/VInput/VInput.mjs.map +1 -1
- package/lib/components/VInput/index.d.mts +6 -0
- package/lib/components/VList/VList.mjs +2 -1
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/VListItem.css +1 -1
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +3 -3
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/touch.mjs +16 -2
- package/lib/components/VNavigationDrawer/touch.mjs.map +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.mjs +11 -1
- package/lib/components/VProgressLinear/VProgressLinear.mjs.map +1 -1
- package/lib/components/VProgressLinear/index.d.mts +21 -0
- package/lib/components/VRangeSlider/index.d.mts +6 -0
- package/lib/components/VSelect/VSelect.mjs +5 -1
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSlideGroup/index.d.mts +1 -0
- package/lib/components/VSlider/index.d.mts +6 -0
- package/lib/components/VSnackbar/VSnackbar.css +18 -4
- package/lib/components/VSnackbar/VSnackbar.mjs +26 -8
- package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.sass +19 -3
- package/lib/components/VSwitch/VSwitch.css +14 -2
- package/lib/components/VSwitch/VSwitch.sass +8 -2
- package/lib/components/VSystemBar/VSystemBar.css +1 -1
- package/lib/components/VTabs/index.d.mts +1 -0
- package/lib/components/VTextField/index.d.mts +15 -3
- package/lib/components/VTextarea/index.d.mts +15 -3
- package/lib/components/VWindow/index.d.mts +1 -0
- package/lib/components/index.d.mts +85 -21
- package/lib/composables/group.mjs +10 -1
- package/lib/composables/group.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +42 -41
- package/lib/labs/VEmptyState/VEmptyState.css +3 -3
- package/lib/labs/VFab/VFab.css +1 -0
- package/lib/labs/VFab/VFab.mjs +3 -2
- package/lib/labs/VFab/VFab.mjs.map +1 -1
- package/lib/labs/VFab/VFab.sass +1 -0
- package/lib/labs/VFab/index.d.mts +10 -0
- package/lib/labs/VNumberInput/VNumberInput.mjs +79 -24
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VNumberInput/index.d.mts +56 -29
- package/lib/labs/VSnackbarQueue/VSnackbarQueue.mjs +112 -0
- package/lib/labs/VSnackbarQueue/VSnackbarQueue.mjs.map +1 -0
- package/lib/labs/VSnackbarQueue/index.d.mts +2693 -0
- package/lib/labs/VSnackbarQueue/index.mjs +2 -0
- package/lib/labs/VSnackbarQueue/index.mjs.map +1 -0
- package/lib/labs/VTimePicker/VTimePickerClock.mjs +1 -3
- package/lib/labs/VTimePicker/VTimePickerClock.mjs.map +1 -1
- package/lib/labs/VTimePicker/index.d.mts +6 -13
- package/lib/labs/components.d.mts +2893 -282
- package/lib/labs/components.mjs +1 -0
- package/lib/labs/components.mjs.map +1 -1
- package/lib/locale/af.mjs +1 -0
- package/lib/locale/af.mjs.map +1 -1
- package/lib/locale/ar.mjs +1 -0
- package/lib/locale/ar.mjs.map +1 -1
- package/lib/locale/az.mjs +1 -0
- package/lib/locale/az.mjs.map +1 -1
- package/lib/locale/bg.mjs +1 -0
- package/lib/locale/bg.mjs.map +1 -1
- package/lib/locale/ca.mjs +1 -0
- package/lib/locale/ca.mjs.map +1 -1
- package/lib/locale/ckb.mjs +1 -0
- package/lib/locale/ckb.mjs.map +1 -1
- package/lib/locale/cs.mjs +1 -0
- package/lib/locale/cs.mjs.map +1 -1
- package/lib/locale/da.mjs +1 -0
- package/lib/locale/da.mjs.map +1 -1
- package/lib/locale/de.mjs +1 -0
- package/lib/locale/de.mjs.map +1 -1
- package/lib/locale/el.mjs +1 -0
- package/lib/locale/el.mjs.map +1 -1
- package/lib/locale/en.mjs +1 -0
- package/lib/locale/en.mjs.map +1 -1
- package/lib/locale/es.mjs +1 -0
- package/lib/locale/es.mjs.map +1 -1
- package/lib/locale/et.mjs +1 -0
- package/lib/locale/et.mjs.map +1 -1
- package/lib/locale/fa.mjs +1 -0
- package/lib/locale/fa.mjs.map +1 -1
- package/lib/locale/fi.mjs +1 -0
- package/lib/locale/fi.mjs.map +1 -1
- package/lib/locale/fr.mjs +1 -0
- package/lib/locale/fr.mjs.map +1 -1
- package/lib/locale/he.mjs +1 -0
- package/lib/locale/he.mjs.map +1 -1
- package/lib/locale/hr.mjs +1 -0
- package/lib/locale/hr.mjs.map +1 -1
- package/lib/locale/hu.mjs +1 -0
- package/lib/locale/hu.mjs.map +1 -1
- package/lib/locale/id.mjs +1 -0
- package/lib/locale/id.mjs.map +1 -1
- package/lib/locale/index.d.mts +43 -0
- package/lib/locale/it.mjs +1 -0
- package/lib/locale/it.mjs.map +1 -1
- package/lib/locale/ja.mjs +1 -0
- package/lib/locale/ja.mjs.map +1 -1
- package/lib/locale/km.mjs +1 -0
- package/lib/locale/km.mjs.map +1 -1
- package/lib/locale/ko.mjs +1 -0
- package/lib/locale/ko.mjs.map +1 -1
- package/lib/locale/lt.mjs +1 -0
- package/lib/locale/lt.mjs.map +1 -1
- package/lib/locale/lv.mjs +1 -0
- package/lib/locale/lv.mjs.map +1 -1
- package/lib/locale/nl.mjs +1 -0
- package/lib/locale/nl.mjs.map +1 -1
- package/lib/locale/no.mjs +1 -0
- package/lib/locale/no.mjs.map +1 -1
- package/lib/locale/pl.mjs +1 -0
- package/lib/locale/pl.mjs.map +1 -1
- package/lib/locale/pt.mjs +1 -0
- package/lib/locale/pt.mjs.map +1 -1
- package/lib/locale/ro.mjs +1 -0
- package/lib/locale/ro.mjs.map +1 -1
- package/lib/locale/ru.mjs +1 -0
- package/lib/locale/ru.mjs.map +1 -1
- package/lib/locale/sk.mjs +1 -0
- package/lib/locale/sk.mjs.map +1 -1
- package/lib/locale/sl.mjs +1 -0
- package/lib/locale/sl.mjs.map +1 -1
- package/lib/locale/sr-Cyrl.mjs +1 -0
- package/lib/locale/sr-Cyrl.mjs.map +1 -1
- package/lib/locale/sr-Latn.mjs +1 -0
- package/lib/locale/sr-Latn.mjs.map +1 -1
- package/lib/locale/sv.mjs +1 -0
- package/lib/locale/sv.mjs.map +1 -1
- package/lib/locale/th.mjs +1 -0
- package/lib/locale/th.mjs.map +1 -1
- package/lib/locale/tr.mjs +1 -0
- package/lib/locale/tr.mjs.map +1 -1
- package/lib/locale/uk.mjs +1 -0
- package/lib/locale/uk.mjs.map +1 -1
- package/lib/locale/vi.mjs +1 -0
- package/lib/locale/vi.mjs.map +1 -1
- package/lib/locale/zh-Hans.mjs +1 -0
- package/lib/locale/zh-Hans.mjs.map +1 -1
- package/lib/locale/zh-Hant.mjs +1 -0
- package/lib/locale/zh-Hant.mjs.map +1 -1
- package/lib/styles/main.css +78 -78
- package/lib/styles/settings/_variables.scss +21 -14
- package/package.json +2 -2
package/lib/styles/main.css
CHANGED
|
@@ -6703,7 +6703,7 @@ html.overflow-y-hidden {
|
|
|
6703
6703
|
.text-h1 {
|
|
6704
6704
|
font-size: 6rem !important;
|
|
6705
6705
|
font-weight: 300;
|
|
6706
|
-
line-height:
|
|
6706
|
+
line-height: 1;
|
|
6707
6707
|
letter-spacing: -0.015625em !important;
|
|
6708
6708
|
font-family: "Roboto", sans-serif;
|
|
6709
6709
|
text-transform: none !important;
|
|
@@ -6712,7 +6712,7 @@ html.overflow-y-hidden {
|
|
|
6712
6712
|
.text-h2 {
|
|
6713
6713
|
font-size: 3.75rem !important;
|
|
6714
6714
|
font-weight: 300;
|
|
6715
|
-
line-height:
|
|
6715
|
+
line-height: 1;
|
|
6716
6716
|
letter-spacing: -0.0083333333em !important;
|
|
6717
6717
|
font-family: "Roboto", sans-serif;
|
|
6718
6718
|
text-transform: none !important;
|
|
@@ -6721,7 +6721,7 @@ html.overflow-y-hidden {
|
|
|
6721
6721
|
.text-h3 {
|
|
6722
6722
|
font-size: 3rem !important;
|
|
6723
6723
|
font-weight: 400;
|
|
6724
|
-
line-height:
|
|
6724
|
+
line-height: 1.05;
|
|
6725
6725
|
letter-spacing: normal !important;
|
|
6726
6726
|
font-family: "Roboto", sans-serif;
|
|
6727
6727
|
text-transform: none !important;
|
|
@@ -6730,7 +6730,7 @@ html.overflow-y-hidden {
|
|
|
6730
6730
|
.text-h4 {
|
|
6731
6731
|
font-size: 2.125rem !important;
|
|
6732
6732
|
font-weight: 400;
|
|
6733
|
-
line-height:
|
|
6733
|
+
line-height: 1.175;
|
|
6734
6734
|
letter-spacing: 0.0073529412em !important;
|
|
6735
6735
|
font-family: "Roboto", sans-serif;
|
|
6736
6736
|
text-transform: none !important;
|
|
@@ -6739,7 +6739,7 @@ html.overflow-y-hidden {
|
|
|
6739
6739
|
.text-h5 {
|
|
6740
6740
|
font-size: 1.5rem !important;
|
|
6741
6741
|
font-weight: 400;
|
|
6742
|
-
line-height:
|
|
6742
|
+
line-height: 1.333;
|
|
6743
6743
|
letter-spacing: normal !important;
|
|
6744
6744
|
font-family: "Roboto", sans-serif;
|
|
6745
6745
|
text-transform: none !important;
|
|
@@ -6748,7 +6748,7 @@ html.overflow-y-hidden {
|
|
|
6748
6748
|
.text-h6 {
|
|
6749
6749
|
font-size: 1.25rem !important;
|
|
6750
6750
|
font-weight: 500;
|
|
6751
|
-
line-height:
|
|
6751
|
+
line-height: 1.6;
|
|
6752
6752
|
letter-spacing: 0.0125em !important;
|
|
6753
6753
|
font-family: "Roboto", sans-serif;
|
|
6754
6754
|
text-transform: none !important;
|
|
@@ -6757,7 +6757,7 @@ html.overflow-y-hidden {
|
|
|
6757
6757
|
.text-subtitle-1 {
|
|
6758
6758
|
font-size: 1rem !important;
|
|
6759
6759
|
font-weight: normal;
|
|
6760
|
-
line-height: 1.
|
|
6760
|
+
line-height: 1.75;
|
|
6761
6761
|
letter-spacing: 0.009375em !important;
|
|
6762
6762
|
font-family: "Roboto", sans-serif;
|
|
6763
6763
|
text-transform: none !important;
|
|
@@ -6766,7 +6766,7 @@ html.overflow-y-hidden {
|
|
|
6766
6766
|
.text-subtitle-2 {
|
|
6767
6767
|
font-size: 0.875rem !important;
|
|
6768
6768
|
font-weight: 500;
|
|
6769
|
-
line-height: 1.
|
|
6769
|
+
line-height: 1.6;
|
|
6770
6770
|
letter-spacing: 0.0071428571em !important;
|
|
6771
6771
|
font-family: "Roboto", sans-serif;
|
|
6772
6772
|
text-transform: none !important;
|
|
@@ -6775,7 +6775,7 @@ html.overflow-y-hidden {
|
|
|
6775
6775
|
.text-body-1 {
|
|
6776
6776
|
font-size: 1rem !important;
|
|
6777
6777
|
font-weight: 400;
|
|
6778
|
-
line-height: 1.
|
|
6778
|
+
line-height: 1.5;
|
|
6779
6779
|
letter-spacing: 0.03125em !important;
|
|
6780
6780
|
font-family: "Roboto", sans-serif;
|
|
6781
6781
|
text-transform: none !important;
|
|
@@ -6784,7 +6784,7 @@ html.overflow-y-hidden {
|
|
|
6784
6784
|
.text-body-2 {
|
|
6785
6785
|
font-size: 0.875rem !important;
|
|
6786
6786
|
font-weight: 400;
|
|
6787
|
-
line-height: 1.
|
|
6787
|
+
line-height: 1.425;
|
|
6788
6788
|
letter-spacing: 0.0178571429em !important;
|
|
6789
6789
|
font-family: "Roboto", sans-serif;
|
|
6790
6790
|
text-transform: none !important;
|
|
@@ -6793,7 +6793,7 @@ html.overflow-y-hidden {
|
|
|
6793
6793
|
.text-button {
|
|
6794
6794
|
font-size: 0.875rem !important;
|
|
6795
6795
|
font-weight: 500;
|
|
6796
|
-
line-height: 2.
|
|
6796
|
+
line-height: 2.6;
|
|
6797
6797
|
letter-spacing: 0.0892857143em !important;
|
|
6798
6798
|
font-family: "Roboto", sans-serif;
|
|
6799
6799
|
text-transform: uppercase !important;
|
|
@@ -6802,7 +6802,7 @@ html.overflow-y-hidden {
|
|
|
6802
6802
|
.text-caption {
|
|
6803
6803
|
font-size: 0.75rem !important;
|
|
6804
6804
|
font-weight: 400;
|
|
6805
|
-
line-height: 1.
|
|
6805
|
+
line-height: 1.667;
|
|
6806
6806
|
letter-spacing: 0.0333333333em !important;
|
|
6807
6807
|
font-family: "Roboto", sans-serif;
|
|
6808
6808
|
text-transform: none !important;
|
|
@@ -6811,7 +6811,7 @@ html.overflow-y-hidden {
|
|
|
6811
6811
|
.text-overline {
|
|
6812
6812
|
font-size: 0.75rem !important;
|
|
6813
6813
|
font-weight: 500;
|
|
6814
|
-
line-height:
|
|
6814
|
+
line-height: 2.667;
|
|
6815
6815
|
letter-spacing: 0.1666666667em !important;
|
|
6816
6816
|
font-family: "Roboto", sans-serif;
|
|
6817
6817
|
text-transform: uppercase !important;
|
|
@@ -8889,7 +8889,7 @@ html.overflow-y-hidden {
|
|
|
8889
8889
|
.text-sm-h1 {
|
|
8890
8890
|
font-size: 6rem !important;
|
|
8891
8891
|
font-weight: 300;
|
|
8892
|
-
line-height:
|
|
8892
|
+
line-height: 1;
|
|
8893
8893
|
letter-spacing: -0.015625em !important;
|
|
8894
8894
|
font-family: "Roboto", sans-serif;
|
|
8895
8895
|
text-transform: none !important;
|
|
@@ -8897,7 +8897,7 @@ html.overflow-y-hidden {
|
|
|
8897
8897
|
.text-sm-h2 {
|
|
8898
8898
|
font-size: 3.75rem !important;
|
|
8899
8899
|
font-weight: 300;
|
|
8900
|
-
line-height:
|
|
8900
|
+
line-height: 1;
|
|
8901
8901
|
letter-spacing: -0.0083333333em !important;
|
|
8902
8902
|
font-family: "Roboto", sans-serif;
|
|
8903
8903
|
text-transform: none !important;
|
|
@@ -8905,7 +8905,7 @@ html.overflow-y-hidden {
|
|
|
8905
8905
|
.text-sm-h3 {
|
|
8906
8906
|
font-size: 3rem !important;
|
|
8907
8907
|
font-weight: 400;
|
|
8908
|
-
line-height:
|
|
8908
|
+
line-height: 1.05;
|
|
8909
8909
|
letter-spacing: normal !important;
|
|
8910
8910
|
font-family: "Roboto", sans-serif;
|
|
8911
8911
|
text-transform: none !important;
|
|
@@ -8913,7 +8913,7 @@ html.overflow-y-hidden {
|
|
|
8913
8913
|
.text-sm-h4 {
|
|
8914
8914
|
font-size: 2.125rem !important;
|
|
8915
8915
|
font-weight: 400;
|
|
8916
|
-
line-height:
|
|
8916
|
+
line-height: 1.175;
|
|
8917
8917
|
letter-spacing: 0.0073529412em !important;
|
|
8918
8918
|
font-family: "Roboto", sans-serif;
|
|
8919
8919
|
text-transform: none !important;
|
|
@@ -8921,7 +8921,7 @@ html.overflow-y-hidden {
|
|
|
8921
8921
|
.text-sm-h5 {
|
|
8922
8922
|
font-size: 1.5rem !important;
|
|
8923
8923
|
font-weight: 400;
|
|
8924
|
-
line-height:
|
|
8924
|
+
line-height: 1.333;
|
|
8925
8925
|
letter-spacing: normal !important;
|
|
8926
8926
|
font-family: "Roboto", sans-serif;
|
|
8927
8927
|
text-transform: none !important;
|
|
@@ -8929,7 +8929,7 @@ html.overflow-y-hidden {
|
|
|
8929
8929
|
.text-sm-h6 {
|
|
8930
8930
|
font-size: 1.25rem !important;
|
|
8931
8931
|
font-weight: 500;
|
|
8932
|
-
line-height:
|
|
8932
|
+
line-height: 1.6;
|
|
8933
8933
|
letter-spacing: 0.0125em !important;
|
|
8934
8934
|
font-family: "Roboto", sans-serif;
|
|
8935
8935
|
text-transform: none !important;
|
|
@@ -8937,7 +8937,7 @@ html.overflow-y-hidden {
|
|
|
8937
8937
|
.text-sm-subtitle-1 {
|
|
8938
8938
|
font-size: 1rem !important;
|
|
8939
8939
|
font-weight: normal;
|
|
8940
|
-
line-height: 1.
|
|
8940
|
+
line-height: 1.75;
|
|
8941
8941
|
letter-spacing: 0.009375em !important;
|
|
8942
8942
|
font-family: "Roboto", sans-serif;
|
|
8943
8943
|
text-transform: none !important;
|
|
@@ -8945,7 +8945,7 @@ html.overflow-y-hidden {
|
|
|
8945
8945
|
.text-sm-subtitle-2 {
|
|
8946
8946
|
font-size: 0.875rem !important;
|
|
8947
8947
|
font-weight: 500;
|
|
8948
|
-
line-height: 1.
|
|
8948
|
+
line-height: 1.6;
|
|
8949
8949
|
letter-spacing: 0.0071428571em !important;
|
|
8950
8950
|
font-family: "Roboto", sans-serif;
|
|
8951
8951
|
text-transform: none !important;
|
|
@@ -8953,7 +8953,7 @@ html.overflow-y-hidden {
|
|
|
8953
8953
|
.text-sm-body-1 {
|
|
8954
8954
|
font-size: 1rem !important;
|
|
8955
8955
|
font-weight: 400;
|
|
8956
|
-
line-height: 1.
|
|
8956
|
+
line-height: 1.5;
|
|
8957
8957
|
letter-spacing: 0.03125em !important;
|
|
8958
8958
|
font-family: "Roboto", sans-serif;
|
|
8959
8959
|
text-transform: none !important;
|
|
@@ -8961,7 +8961,7 @@ html.overflow-y-hidden {
|
|
|
8961
8961
|
.text-sm-body-2 {
|
|
8962
8962
|
font-size: 0.875rem !important;
|
|
8963
8963
|
font-weight: 400;
|
|
8964
|
-
line-height: 1.
|
|
8964
|
+
line-height: 1.425;
|
|
8965
8965
|
letter-spacing: 0.0178571429em !important;
|
|
8966
8966
|
font-family: "Roboto", sans-serif;
|
|
8967
8967
|
text-transform: none !important;
|
|
@@ -8969,7 +8969,7 @@ html.overflow-y-hidden {
|
|
|
8969
8969
|
.text-sm-button {
|
|
8970
8970
|
font-size: 0.875rem !important;
|
|
8971
8971
|
font-weight: 500;
|
|
8972
|
-
line-height: 2.
|
|
8972
|
+
line-height: 2.6;
|
|
8973
8973
|
letter-spacing: 0.0892857143em !important;
|
|
8974
8974
|
font-family: "Roboto", sans-serif;
|
|
8975
8975
|
text-transform: uppercase !important;
|
|
@@ -8977,7 +8977,7 @@ html.overflow-y-hidden {
|
|
|
8977
8977
|
.text-sm-caption {
|
|
8978
8978
|
font-size: 0.75rem !important;
|
|
8979
8979
|
font-weight: 400;
|
|
8980
|
-
line-height: 1.
|
|
8980
|
+
line-height: 1.667;
|
|
8981
8981
|
letter-spacing: 0.0333333333em !important;
|
|
8982
8982
|
font-family: "Roboto", sans-serif;
|
|
8983
8983
|
text-transform: none !important;
|
|
@@ -8985,7 +8985,7 @@ html.overflow-y-hidden {
|
|
|
8985
8985
|
.text-sm-overline {
|
|
8986
8986
|
font-size: 0.75rem !important;
|
|
8987
8987
|
font-weight: 500;
|
|
8988
|
-
line-height:
|
|
8988
|
+
line-height: 2.667;
|
|
8989
8989
|
letter-spacing: 0.1666666667em !important;
|
|
8990
8990
|
font-family: "Roboto", sans-serif;
|
|
8991
8991
|
text-transform: uppercase !important;
|
|
@@ -10879,7 +10879,7 @@ html.overflow-y-hidden {
|
|
|
10879
10879
|
.text-md-h1 {
|
|
10880
10880
|
font-size: 6rem !important;
|
|
10881
10881
|
font-weight: 300;
|
|
10882
|
-
line-height:
|
|
10882
|
+
line-height: 1;
|
|
10883
10883
|
letter-spacing: -0.015625em !important;
|
|
10884
10884
|
font-family: "Roboto", sans-serif;
|
|
10885
10885
|
text-transform: none !important;
|
|
@@ -10887,7 +10887,7 @@ html.overflow-y-hidden {
|
|
|
10887
10887
|
.text-md-h2 {
|
|
10888
10888
|
font-size: 3.75rem !important;
|
|
10889
10889
|
font-weight: 300;
|
|
10890
|
-
line-height:
|
|
10890
|
+
line-height: 1;
|
|
10891
10891
|
letter-spacing: -0.0083333333em !important;
|
|
10892
10892
|
font-family: "Roboto", sans-serif;
|
|
10893
10893
|
text-transform: none !important;
|
|
@@ -10895,7 +10895,7 @@ html.overflow-y-hidden {
|
|
|
10895
10895
|
.text-md-h3 {
|
|
10896
10896
|
font-size: 3rem !important;
|
|
10897
10897
|
font-weight: 400;
|
|
10898
|
-
line-height:
|
|
10898
|
+
line-height: 1.05;
|
|
10899
10899
|
letter-spacing: normal !important;
|
|
10900
10900
|
font-family: "Roboto", sans-serif;
|
|
10901
10901
|
text-transform: none !important;
|
|
@@ -10903,7 +10903,7 @@ html.overflow-y-hidden {
|
|
|
10903
10903
|
.text-md-h4 {
|
|
10904
10904
|
font-size: 2.125rem !important;
|
|
10905
10905
|
font-weight: 400;
|
|
10906
|
-
line-height:
|
|
10906
|
+
line-height: 1.175;
|
|
10907
10907
|
letter-spacing: 0.0073529412em !important;
|
|
10908
10908
|
font-family: "Roboto", sans-serif;
|
|
10909
10909
|
text-transform: none !important;
|
|
@@ -10911,7 +10911,7 @@ html.overflow-y-hidden {
|
|
|
10911
10911
|
.text-md-h5 {
|
|
10912
10912
|
font-size: 1.5rem !important;
|
|
10913
10913
|
font-weight: 400;
|
|
10914
|
-
line-height:
|
|
10914
|
+
line-height: 1.333;
|
|
10915
10915
|
letter-spacing: normal !important;
|
|
10916
10916
|
font-family: "Roboto", sans-serif;
|
|
10917
10917
|
text-transform: none !important;
|
|
@@ -10919,7 +10919,7 @@ html.overflow-y-hidden {
|
|
|
10919
10919
|
.text-md-h6 {
|
|
10920
10920
|
font-size: 1.25rem !important;
|
|
10921
10921
|
font-weight: 500;
|
|
10922
|
-
line-height:
|
|
10922
|
+
line-height: 1.6;
|
|
10923
10923
|
letter-spacing: 0.0125em !important;
|
|
10924
10924
|
font-family: "Roboto", sans-serif;
|
|
10925
10925
|
text-transform: none !important;
|
|
@@ -10927,7 +10927,7 @@ html.overflow-y-hidden {
|
|
|
10927
10927
|
.text-md-subtitle-1 {
|
|
10928
10928
|
font-size: 1rem !important;
|
|
10929
10929
|
font-weight: normal;
|
|
10930
|
-
line-height: 1.
|
|
10930
|
+
line-height: 1.75;
|
|
10931
10931
|
letter-spacing: 0.009375em !important;
|
|
10932
10932
|
font-family: "Roboto", sans-serif;
|
|
10933
10933
|
text-transform: none !important;
|
|
@@ -10935,7 +10935,7 @@ html.overflow-y-hidden {
|
|
|
10935
10935
|
.text-md-subtitle-2 {
|
|
10936
10936
|
font-size: 0.875rem !important;
|
|
10937
10937
|
font-weight: 500;
|
|
10938
|
-
line-height: 1.
|
|
10938
|
+
line-height: 1.6;
|
|
10939
10939
|
letter-spacing: 0.0071428571em !important;
|
|
10940
10940
|
font-family: "Roboto", sans-serif;
|
|
10941
10941
|
text-transform: none !important;
|
|
@@ -10943,7 +10943,7 @@ html.overflow-y-hidden {
|
|
|
10943
10943
|
.text-md-body-1 {
|
|
10944
10944
|
font-size: 1rem !important;
|
|
10945
10945
|
font-weight: 400;
|
|
10946
|
-
line-height: 1.
|
|
10946
|
+
line-height: 1.5;
|
|
10947
10947
|
letter-spacing: 0.03125em !important;
|
|
10948
10948
|
font-family: "Roboto", sans-serif;
|
|
10949
10949
|
text-transform: none !important;
|
|
@@ -10951,7 +10951,7 @@ html.overflow-y-hidden {
|
|
|
10951
10951
|
.text-md-body-2 {
|
|
10952
10952
|
font-size: 0.875rem !important;
|
|
10953
10953
|
font-weight: 400;
|
|
10954
|
-
line-height: 1.
|
|
10954
|
+
line-height: 1.425;
|
|
10955
10955
|
letter-spacing: 0.0178571429em !important;
|
|
10956
10956
|
font-family: "Roboto", sans-serif;
|
|
10957
10957
|
text-transform: none !important;
|
|
@@ -10959,7 +10959,7 @@ html.overflow-y-hidden {
|
|
|
10959
10959
|
.text-md-button {
|
|
10960
10960
|
font-size: 0.875rem !important;
|
|
10961
10961
|
font-weight: 500;
|
|
10962
|
-
line-height: 2.
|
|
10962
|
+
line-height: 2.6;
|
|
10963
10963
|
letter-spacing: 0.0892857143em !important;
|
|
10964
10964
|
font-family: "Roboto", sans-serif;
|
|
10965
10965
|
text-transform: uppercase !important;
|
|
@@ -10967,7 +10967,7 @@ html.overflow-y-hidden {
|
|
|
10967
10967
|
.text-md-caption {
|
|
10968
10968
|
font-size: 0.75rem !important;
|
|
10969
10969
|
font-weight: 400;
|
|
10970
|
-
line-height: 1.
|
|
10970
|
+
line-height: 1.667;
|
|
10971
10971
|
letter-spacing: 0.0333333333em !important;
|
|
10972
10972
|
font-family: "Roboto", sans-serif;
|
|
10973
10973
|
text-transform: none !important;
|
|
@@ -10975,7 +10975,7 @@ html.overflow-y-hidden {
|
|
|
10975
10975
|
.text-md-overline {
|
|
10976
10976
|
font-size: 0.75rem !important;
|
|
10977
10977
|
font-weight: 500;
|
|
10978
|
-
line-height:
|
|
10978
|
+
line-height: 2.667;
|
|
10979
10979
|
letter-spacing: 0.1666666667em !important;
|
|
10980
10980
|
font-family: "Roboto", sans-serif;
|
|
10981
10981
|
text-transform: uppercase !important;
|
|
@@ -12869,7 +12869,7 @@ html.overflow-y-hidden {
|
|
|
12869
12869
|
.text-lg-h1 {
|
|
12870
12870
|
font-size: 6rem !important;
|
|
12871
12871
|
font-weight: 300;
|
|
12872
|
-
line-height:
|
|
12872
|
+
line-height: 1;
|
|
12873
12873
|
letter-spacing: -0.015625em !important;
|
|
12874
12874
|
font-family: "Roboto", sans-serif;
|
|
12875
12875
|
text-transform: none !important;
|
|
@@ -12877,7 +12877,7 @@ html.overflow-y-hidden {
|
|
|
12877
12877
|
.text-lg-h2 {
|
|
12878
12878
|
font-size: 3.75rem !important;
|
|
12879
12879
|
font-weight: 300;
|
|
12880
|
-
line-height:
|
|
12880
|
+
line-height: 1;
|
|
12881
12881
|
letter-spacing: -0.0083333333em !important;
|
|
12882
12882
|
font-family: "Roboto", sans-serif;
|
|
12883
12883
|
text-transform: none !important;
|
|
@@ -12885,7 +12885,7 @@ html.overflow-y-hidden {
|
|
|
12885
12885
|
.text-lg-h3 {
|
|
12886
12886
|
font-size: 3rem !important;
|
|
12887
12887
|
font-weight: 400;
|
|
12888
|
-
line-height:
|
|
12888
|
+
line-height: 1.05;
|
|
12889
12889
|
letter-spacing: normal !important;
|
|
12890
12890
|
font-family: "Roboto", sans-serif;
|
|
12891
12891
|
text-transform: none !important;
|
|
@@ -12893,7 +12893,7 @@ html.overflow-y-hidden {
|
|
|
12893
12893
|
.text-lg-h4 {
|
|
12894
12894
|
font-size: 2.125rem !important;
|
|
12895
12895
|
font-weight: 400;
|
|
12896
|
-
line-height:
|
|
12896
|
+
line-height: 1.175;
|
|
12897
12897
|
letter-spacing: 0.0073529412em !important;
|
|
12898
12898
|
font-family: "Roboto", sans-serif;
|
|
12899
12899
|
text-transform: none !important;
|
|
@@ -12901,7 +12901,7 @@ html.overflow-y-hidden {
|
|
|
12901
12901
|
.text-lg-h5 {
|
|
12902
12902
|
font-size: 1.5rem !important;
|
|
12903
12903
|
font-weight: 400;
|
|
12904
|
-
line-height:
|
|
12904
|
+
line-height: 1.333;
|
|
12905
12905
|
letter-spacing: normal !important;
|
|
12906
12906
|
font-family: "Roboto", sans-serif;
|
|
12907
12907
|
text-transform: none !important;
|
|
@@ -12909,7 +12909,7 @@ html.overflow-y-hidden {
|
|
|
12909
12909
|
.text-lg-h6 {
|
|
12910
12910
|
font-size: 1.25rem !important;
|
|
12911
12911
|
font-weight: 500;
|
|
12912
|
-
line-height:
|
|
12912
|
+
line-height: 1.6;
|
|
12913
12913
|
letter-spacing: 0.0125em !important;
|
|
12914
12914
|
font-family: "Roboto", sans-serif;
|
|
12915
12915
|
text-transform: none !important;
|
|
@@ -12917,7 +12917,7 @@ html.overflow-y-hidden {
|
|
|
12917
12917
|
.text-lg-subtitle-1 {
|
|
12918
12918
|
font-size: 1rem !important;
|
|
12919
12919
|
font-weight: normal;
|
|
12920
|
-
line-height: 1.
|
|
12920
|
+
line-height: 1.75;
|
|
12921
12921
|
letter-spacing: 0.009375em !important;
|
|
12922
12922
|
font-family: "Roboto", sans-serif;
|
|
12923
12923
|
text-transform: none !important;
|
|
@@ -12925,7 +12925,7 @@ html.overflow-y-hidden {
|
|
|
12925
12925
|
.text-lg-subtitle-2 {
|
|
12926
12926
|
font-size: 0.875rem !important;
|
|
12927
12927
|
font-weight: 500;
|
|
12928
|
-
line-height: 1.
|
|
12928
|
+
line-height: 1.6;
|
|
12929
12929
|
letter-spacing: 0.0071428571em !important;
|
|
12930
12930
|
font-family: "Roboto", sans-serif;
|
|
12931
12931
|
text-transform: none !important;
|
|
@@ -12933,7 +12933,7 @@ html.overflow-y-hidden {
|
|
|
12933
12933
|
.text-lg-body-1 {
|
|
12934
12934
|
font-size: 1rem !important;
|
|
12935
12935
|
font-weight: 400;
|
|
12936
|
-
line-height: 1.
|
|
12936
|
+
line-height: 1.5;
|
|
12937
12937
|
letter-spacing: 0.03125em !important;
|
|
12938
12938
|
font-family: "Roboto", sans-serif;
|
|
12939
12939
|
text-transform: none !important;
|
|
@@ -12941,7 +12941,7 @@ html.overflow-y-hidden {
|
|
|
12941
12941
|
.text-lg-body-2 {
|
|
12942
12942
|
font-size: 0.875rem !important;
|
|
12943
12943
|
font-weight: 400;
|
|
12944
|
-
line-height: 1.
|
|
12944
|
+
line-height: 1.425;
|
|
12945
12945
|
letter-spacing: 0.0178571429em !important;
|
|
12946
12946
|
font-family: "Roboto", sans-serif;
|
|
12947
12947
|
text-transform: none !important;
|
|
@@ -12949,7 +12949,7 @@ html.overflow-y-hidden {
|
|
|
12949
12949
|
.text-lg-button {
|
|
12950
12950
|
font-size: 0.875rem !important;
|
|
12951
12951
|
font-weight: 500;
|
|
12952
|
-
line-height: 2.
|
|
12952
|
+
line-height: 2.6;
|
|
12953
12953
|
letter-spacing: 0.0892857143em !important;
|
|
12954
12954
|
font-family: "Roboto", sans-serif;
|
|
12955
12955
|
text-transform: uppercase !important;
|
|
@@ -12957,7 +12957,7 @@ html.overflow-y-hidden {
|
|
|
12957
12957
|
.text-lg-caption {
|
|
12958
12958
|
font-size: 0.75rem !important;
|
|
12959
12959
|
font-weight: 400;
|
|
12960
|
-
line-height: 1.
|
|
12960
|
+
line-height: 1.667;
|
|
12961
12961
|
letter-spacing: 0.0333333333em !important;
|
|
12962
12962
|
font-family: "Roboto", sans-serif;
|
|
12963
12963
|
text-transform: none !important;
|
|
@@ -12965,7 +12965,7 @@ html.overflow-y-hidden {
|
|
|
12965
12965
|
.text-lg-overline {
|
|
12966
12966
|
font-size: 0.75rem !important;
|
|
12967
12967
|
font-weight: 500;
|
|
12968
|
-
line-height:
|
|
12968
|
+
line-height: 2.667;
|
|
12969
12969
|
letter-spacing: 0.1666666667em !important;
|
|
12970
12970
|
font-family: "Roboto", sans-serif;
|
|
12971
12971
|
text-transform: uppercase !important;
|
|
@@ -14859,7 +14859,7 @@ html.overflow-y-hidden {
|
|
|
14859
14859
|
.text-xl-h1 {
|
|
14860
14860
|
font-size: 6rem !important;
|
|
14861
14861
|
font-weight: 300;
|
|
14862
|
-
line-height:
|
|
14862
|
+
line-height: 1;
|
|
14863
14863
|
letter-spacing: -0.015625em !important;
|
|
14864
14864
|
font-family: "Roboto", sans-serif;
|
|
14865
14865
|
text-transform: none !important;
|
|
@@ -14867,7 +14867,7 @@ html.overflow-y-hidden {
|
|
|
14867
14867
|
.text-xl-h2 {
|
|
14868
14868
|
font-size: 3.75rem !important;
|
|
14869
14869
|
font-weight: 300;
|
|
14870
|
-
line-height:
|
|
14870
|
+
line-height: 1;
|
|
14871
14871
|
letter-spacing: -0.0083333333em !important;
|
|
14872
14872
|
font-family: "Roboto", sans-serif;
|
|
14873
14873
|
text-transform: none !important;
|
|
@@ -14875,7 +14875,7 @@ html.overflow-y-hidden {
|
|
|
14875
14875
|
.text-xl-h3 {
|
|
14876
14876
|
font-size: 3rem !important;
|
|
14877
14877
|
font-weight: 400;
|
|
14878
|
-
line-height:
|
|
14878
|
+
line-height: 1.05;
|
|
14879
14879
|
letter-spacing: normal !important;
|
|
14880
14880
|
font-family: "Roboto", sans-serif;
|
|
14881
14881
|
text-transform: none !important;
|
|
@@ -14883,7 +14883,7 @@ html.overflow-y-hidden {
|
|
|
14883
14883
|
.text-xl-h4 {
|
|
14884
14884
|
font-size: 2.125rem !important;
|
|
14885
14885
|
font-weight: 400;
|
|
14886
|
-
line-height:
|
|
14886
|
+
line-height: 1.175;
|
|
14887
14887
|
letter-spacing: 0.0073529412em !important;
|
|
14888
14888
|
font-family: "Roboto", sans-serif;
|
|
14889
14889
|
text-transform: none !important;
|
|
@@ -14891,7 +14891,7 @@ html.overflow-y-hidden {
|
|
|
14891
14891
|
.text-xl-h5 {
|
|
14892
14892
|
font-size: 1.5rem !important;
|
|
14893
14893
|
font-weight: 400;
|
|
14894
|
-
line-height:
|
|
14894
|
+
line-height: 1.333;
|
|
14895
14895
|
letter-spacing: normal !important;
|
|
14896
14896
|
font-family: "Roboto", sans-serif;
|
|
14897
14897
|
text-transform: none !important;
|
|
@@ -14899,7 +14899,7 @@ html.overflow-y-hidden {
|
|
|
14899
14899
|
.text-xl-h6 {
|
|
14900
14900
|
font-size: 1.25rem !important;
|
|
14901
14901
|
font-weight: 500;
|
|
14902
|
-
line-height:
|
|
14902
|
+
line-height: 1.6;
|
|
14903
14903
|
letter-spacing: 0.0125em !important;
|
|
14904
14904
|
font-family: "Roboto", sans-serif;
|
|
14905
14905
|
text-transform: none !important;
|
|
@@ -14907,7 +14907,7 @@ html.overflow-y-hidden {
|
|
|
14907
14907
|
.text-xl-subtitle-1 {
|
|
14908
14908
|
font-size: 1rem !important;
|
|
14909
14909
|
font-weight: normal;
|
|
14910
|
-
line-height: 1.
|
|
14910
|
+
line-height: 1.75;
|
|
14911
14911
|
letter-spacing: 0.009375em !important;
|
|
14912
14912
|
font-family: "Roboto", sans-serif;
|
|
14913
14913
|
text-transform: none !important;
|
|
@@ -14915,7 +14915,7 @@ html.overflow-y-hidden {
|
|
|
14915
14915
|
.text-xl-subtitle-2 {
|
|
14916
14916
|
font-size: 0.875rem !important;
|
|
14917
14917
|
font-weight: 500;
|
|
14918
|
-
line-height: 1.
|
|
14918
|
+
line-height: 1.6;
|
|
14919
14919
|
letter-spacing: 0.0071428571em !important;
|
|
14920
14920
|
font-family: "Roboto", sans-serif;
|
|
14921
14921
|
text-transform: none !important;
|
|
@@ -14923,7 +14923,7 @@ html.overflow-y-hidden {
|
|
|
14923
14923
|
.text-xl-body-1 {
|
|
14924
14924
|
font-size: 1rem !important;
|
|
14925
14925
|
font-weight: 400;
|
|
14926
|
-
line-height: 1.
|
|
14926
|
+
line-height: 1.5;
|
|
14927
14927
|
letter-spacing: 0.03125em !important;
|
|
14928
14928
|
font-family: "Roboto", sans-serif;
|
|
14929
14929
|
text-transform: none !important;
|
|
@@ -14931,7 +14931,7 @@ html.overflow-y-hidden {
|
|
|
14931
14931
|
.text-xl-body-2 {
|
|
14932
14932
|
font-size: 0.875rem !important;
|
|
14933
14933
|
font-weight: 400;
|
|
14934
|
-
line-height: 1.
|
|
14934
|
+
line-height: 1.425;
|
|
14935
14935
|
letter-spacing: 0.0178571429em !important;
|
|
14936
14936
|
font-family: "Roboto", sans-serif;
|
|
14937
14937
|
text-transform: none !important;
|
|
@@ -14939,7 +14939,7 @@ html.overflow-y-hidden {
|
|
|
14939
14939
|
.text-xl-button {
|
|
14940
14940
|
font-size: 0.875rem !important;
|
|
14941
14941
|
font-weight: 500;
|
|
14942
|
-
line-height: 2.
|
|
14942
|
+
line-height: 2.6;
|
|
14943
14943
|
letter-spacing: 0.0892857143em !important;
|
|
14944
14944
|
font-family: "Roboto", sans-serif;
|
|
14945
14945
|
text-transform: uppercase !important;
|
|
@@ -14947,7 +14947,7 @@ html.overflow-y-hidden {
|
|
|
14947
14947
|
.text-xl-caption {
|
|
14948
14948
|
font-size: 0.75rem !important;
|
|
14949
14949
|
font-weight: 400;
|
|
14950
|
-
line-height: 1.
|
|
14950
|
+
line-height: 1.667;
|
|
14951
14951
|
letter-spacing: 0.0333333333em !important;
|
|
14952
14952
|
font-family: "Roboto", sans-serif;
|
|
14953
14953
|
text-transform: none !important;
|
|
@@ -14955,7 +14955,7 @@ html.overflow-y-hidden {
|
|
|
14955
14955
|
.text-xl-overline {
|
|
14956
14956
|
font-size: 0.75rem !important;
|
|
14957
14957
|
font-weight: 500;
|
|
14958
|
-
line-height:
|
|
14958
|
+
line-height: 2.667;
|
|
14959
14959
|
letter-spacing: 0.1666666667em !important;
|
|
14960
14960
|
font-family: "Roboto", sans-serif;
|
|
14961
14961
|
text-transform: uppercase !important;
|
|
@@ -16849,7 +16849,7 @@ html.overflow-y-hidden {
|
|
|
16849
16849
|
.text-xxl-h1 {
|
|
16850
16850
|
font-size: 6rem !important;
|
|
16851
16851
|
font-weight: 300;
|
|
16852
|
-
line-height:
|
|
16852
|
+
line-height: 1;
|
|
16853
16853
|
letter-spacing: -0.015625em !important;
|
|
16854
16854
|
font-family: "Roboto", sans-serif;
|
|
16855
16855
|
text-transform: none !important;
|
|
@@ -16857,7 +16857,7 @@ html.overflow-y-hidden {
|
|
|
16857
16857
|
.text-xxl-h2 {
|
|
16858
16858
|
font-size: 3.75rem !important;
|
|
16859
16859
|
font-weight: 300;
|
|
16860
|
-
line-height:
|
|
16860
|
+
line-height: 1;
|
|
16861
16861
|
letter-spacing: -0.0083333333em !important;
|
|
16862
16862
|
font-family: "Roboto", sans-serif;
|
|
16863
16863
|
text-transform: none !important;
|
|
@@ -16865,7 +16865,7 @@ html.overflow-y-hidden {
|
|
|
16865
16865
|
.text-xxl-h3 {
|
|
16866
16866
|
font-size: 3rem !important;
|
|
16867
16867
|
font-weight: 400;
|
|
16868
|
-
line-height:
|
|
16868
|
+
line-height: 1.05;
|
|
16869
16869
|
letter-spacing: normal !important;
|
|
16870
16870
|
font-family: "Roboto", sans-serif;
|
|
16871
16871
|
text-transform: none !important;
|
|
@@ -16873,7 +16873,7 @@ html.overflow-y-hidden {
|
|
|
16873
16873
|
.text-xxl-h4 {
|
|
16874
16874
|
font-size: 2.125rem !important;
|
|
16875
16875
|
font-weight: 400;
|
|
16876
|
-
line-height:
|
|
16876
|
+
line-height: 1.175;
|
|
16877
16877
|
letter-spacing: 0.0073529412em !important;
|
|
16878
16878
|
font-family: "Roboto", sans-serif;
|
|
16879
16879
|
text-transform: none !important;
|
|
@@ -16881,7 +16881,7 @@ html.overflow-y-hidden {
|
|
|
16881
16881
|
.text-xxl-h5 {
|
|
16882
16882
|
font-size: 1.5rem !important;
|
|
16883
16883
|
font-weight: 400;
|
|
16884
|
-
line-height:
|
|
16884
|
+
line-height: 1.333;
|
|
16885
16885
|
letter-spacing: normal !important;
|
|
16886
16886
|
font-family: "Roboto", sans-serif;
|
|
16887
16887
|
text-transform: none !important;
|
|
@@ -16889,7 +16889,7 @@ html.overflow-y-hidden {
|
|
|
16889
16889
|
.text-xxl-h6 {
|
|
16890
16890
|
font-size: 1.25rem !important;
|
|
16891
16891
|
font-weight: 500;
|
|
16892
|
-
line-height:
|
|
16892
|
+
line-height: 1.6;
|
|
16893
16893
|
letter-spacing: 0.0125em !important;
|
|
16894
16894
|
font-family: "Roboto", sans-serif;
|
|
16895
16895
|
text-transform: none !important;
|
|
@@ -16897,7 +16897,7 @@ html.overflow-y-hidden {
|
|
|
16897
16897
|
.text-xxl-subtitle-1 {
|
|
16898
16898
|
font-size: 1rem !important;
|
|
16899
16899
|
font-weight: normal;
|
|
16900
|
-
line-height: 1.
|
|
16900
|
+
line-height: 1.75;
|
|
16901
16901
|
letter-spacing: 0.009375em !important;
|
|
16902
16902
|
font-family: "Roboto", sans-serif;
|
|
16903
16903
|
text-transform: none !important;
|
|
@@ -16905,7 +16905,7 @@ html.overflow-y-hidden {
|
|
|
16905
16905
|
.text-xxl-subtitle-2 {
|
|
16906
16906
|
font-size: 0.875rem !important;
|
|
16907
16907
|
font-weight: 500;
|
|
16908
|
-
line-height: 1.
|
|
16908
|
+
line-height: 1.6;
|
|
16909
16909
|
letter-spacing: 0.0071428571em !important;
|
|
16910
16910
|
font-family: "Roboto", sans-serif;
|
|
16911
16911
|
text-transform: none !important;
|
|
@@ -16913,7 +16913,7 @@ html.overflow-y-hidden {
|
|
|
16913
16913
|
.text-xxl-body-1 {
|
|
16914
16914
|
font-size: 1rem !important;
|
|
16915
16915
|
font-weight: 400;
|
|
16916
|
-
line-height: 1.
|
|
16916
|
+
line-height: 1.5;
|
|
16917
16917
|
letter-spacing: 0.03125em !important;
|
|
16918
16918
|
font-family: "Roboto", sans-serif;
|
|
16919
16919
|
text-transform: none !important;
|
|
@@ -16921,7 +16921,7 @@ html.overflow-y-hidden {
|
|
|
16921
16921
|
.text-xxl-body-2 {
|
|
16922
16922
|
font-size: 0.875rem !important;
|
|
16923
16923
|
font-weight: 400;
|
|
16924
|
-
line-height: 1.
|
|
16924
|
+
line-height: 1.425;
|
|
16925
16925
|
letter-spacing: 0.0178571429em !important;
|
|
16926
16926
|
font-family: "Roboto", sans-serif;
|
|
16927
16927
|
text-transform: none !important;
|
|
@@ -16929,7 +16929,7 @@ html.overflow-y-hidden {
|
|
|
16929
16929
|
.text-xxl-button {
|
|
16930
16930
|
font-size: 0.875rem !important;
|
|
16931
16931
|
font-weight: 500;
|
|
16932
|
-
line-height: 2.
|
|
16932
|
+
line-height: 2.6;
|
|
16933
16933
|
letter-spacing: 0.0892857143em !important;
|
|
16934
16934
|
font-family: "Roboto", sans-serif;
|
|
16935
16935
|
text-transform: uppercase !important;
|
|
@@ -16937,7 +16937,7 @@ html.overflow-y-hidden {
|
|
|
16937
16937
|
.text-xxl-caption {
|
|
16938
16938
|
font-size: 0.75rem !important;
|
|
16939
16939
|
font-weight: 400;
|
|
16940
|
-
line-height: 1.
|
|
16940
|
+
line-height: 1.667;
|
|
16941
16941
|
letter-spacing: 0.0333333333em !important;
|
|
16942
16942
|
font-family: "Roboto", sans-serif;
|
|
16943
16943
|
text-transform: none !important;
|
|
@@ -16945,7 +16945,7 @@ html.overflow-y-hidden {
|
|
|
16945
16945
|
.text-xxl-overline {
|
|
16946
16946
|
font-size: 0.75rem !important;
|
|
16947
16947
|
font-weight: 500;
|
|
16948
|
-
line-height:
|
|
16948
|
+
line-height: 2.667;
|
|
16949
16949
|
letter-spacing: 0.1666666667em !important;
|
|
16950
16950
|
font-family: "Roboto", sans-serif;
|
|
16951
16951
|
text-transform: uppercase !important;
|