@dative-gpi/foundation-shared-components 1.0.82 → 1.0.84
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/components/FSClickable.vue +0 -1
- package/components/FSClock.vue +12 -3
- package/components/FSLink.vue +8 -4
- package/components/FSLoader.vue +2 -2
- package/components/FSSlideGroup.vue +9 -7
- package/components/FSSpan.vue +4 -2
- package/components/FSTabs.vue +5 -2
- package/components/FSTag.vue +1 -1
- package/components/FSText.vue +4 -2
- package/components/fields/FSAutocompleteField.vue +18 -14
- package/components/fields/FSRichTextField.vue +25 -19
- package/components/fields/FSSelectField.vue +7 -3
- package/components/fields/FSTextArea.vue +10 -4
- package/components/fields/FSTextField.vue +8 -3
- package/components/lists/FSDataTableUI.vue +40 -12
- package/components/tiles/FSLoadTile.vue +2 -0
- package/components/tiles/FSTile.vue +4 -1
- package/components/views/desktop/FSBaseEntityDesktopView.vue +5 -3
- package/composables/useBreakpoints.ts +32 -5
- package/models/tables.ts +1 -0
- package/package.json +4 -4
- package/styles/components/fs_clickable.scss +2 -11
- package/styles/components/fs_clock.scss +0 -10
- package/styles/components/fs_data_table.scss +2 -7
- package/styles/components/fs_filter_button.scss +1 -1
- package/styles/components/fs_hidden_button.scss +2 -7
- package/styles/components/fs_meta_field.scss +3 -5
- package/styles/components/fs_radio.scss +0 -11
- package/styles/components/fs_rich_text_field.scss +1 -10
- package/styles/components/fs_span.scss +1 -1
- package/styles/components/fs_tabs.scss +9 -32
- package/styles/components/fs_tag.scss +3 -19
- package/styles/components/fs_text_area.scss +2 -21
- package/styles/components/fs_tile.scss +0 -10
- package/styles/globals/index.scss +1 -5
- package/styles/globals/overrides.scss +15 -40
- package/styles/globals/text_fonts.scss +18 -66
- package/styles/globals/breakpoints.scss +0 -20
- package/styles/globals/fixes.scss +0 -5
|
@@ -53,9 +53,10 @@
|
|
|
53
53
|
>
|
|
54
54
|
<slot
|
|
55
55
|
name="subtitle"
|
|
56
|
+
v-if="topOffset < 60"
|
|
56
57
|
>
|
|
57
58
|
<FSText
|
|
58
|
-
v-if="$props.subtitle
|
|
59
|
+
v-if="$props.subtitle"
|
|
59
60
|
font="text-button"
|
|
60
61
|
>
|
|
61
62
|
{{ $props.subtitle }}
|
|
@@ -63,9 +64,10 @@
|
|
|
63
64
|
</slot>
|
|
64
65
|
<slot
|
|
65
66
|
name="description"
|
|
67
|
+
v-if="topOffset < 20"
|
|
66
68
|
>
|
|
67
69
|
<FSText
|
|
68
|
-
v-if="$props.description
|
|
70
|
+
v-if="$props.description"
|
|
69
71
|
font="text-body"
|
|
70
72
|
>
|
|
71
73
|
{{ $props.description }}
|
|
@@ -204,4 +206,4 @@ export default defineComponent({
|
|
|
204
206
|
}
|
|
205
207
|
}
|
|
206
208
|
});
|
|
207
|
-
</script>
|
|
209
|
+
</script>
|
|
@@ -2,13 +2,13 @@ import { computed, ref } from "vue";
|
|
|
2
2
|
|
|
3
3
|
let initialized = false;
|
|
4
4
|
|
|
5
|
-
const windowHeight = ref(window.
|
|
6
|
-
const windowWidth = ref(window.
|
|
5
|
+
const windowHeight = ref(window.outerHeight);
|
|
6
|
+
const windowWidth = ref(window.outerWidth);
|
|
7
7
|
|
|
8
8
|
export const useBreakpoints = () => {
|
|
9
9
|
const onSizeChange = (): void => {
|
|
10
|
-
windowHeight.value = window.
|
|
11
|
-
windowWidth.value = window.
|
|
10
|
+
windowHeight.value = window.outerHeight;
|
|
11
|
+
windowWidth.value = window.outerWidth;
|
|
12
12
|
};
|
|
13
13
|
|
|
14
14
|
const isTouchScreenEnabled = computed((): boolean => {
|
|
@@ -28,11 +28,38 @@ export const useBreakpoints = () => {
|
|
|
28
28
|
initialized = true;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
+
const fontStyles = computed(() => ({
|
|
32
|
+
"--fs-font-h1-font-size" : isMobileSized.value ? "28px" : "36px",
|
|
33
|
+
"--fs-font-h1-line-height" : isMobileSized.value ? "32px" : "40px",
|
|
34
|
+
"--fs-font-h1-letter-spacing" : isMobileSized.value ? "-1.4px" : "-0.72px",
|
|
35
|
+
"--fs-font-h2-font-size" : isMobileSized.value ? "22px" : "26px",
|
|
36
|
+
"--fs-font-h2-line-height" : isMobileSized.value ? "24px" : "32px",
|
|
37
|
+
"--fs-font-h2-letter-spacing" : isMobileSized.value ? "-0.88px" : "-0.78px",
|
|
38
|
+
"--fs-font-h3-font-size" : isMobileSized.value ? "16px" : "20px",
|
|
39
|
+
"--fs-font-h3-line-height" : isMobileSized.value ? "20px" : "24px",
|
|
40
|
+
"--fs-font-h3-letter-spacing" : isMobileSized.value ? "-0.48px" : "-0.6px",
|
|
41
|
+
"--fs-font-button-font-size" : isMobileSized.value ? "12px" : "14px",
|
|
42
|
+
"--fs-font-button-line-height" : isMobileSized.value ? "16px" : "20px",
|
|
43
|
+
"--fs-font-button-letter-spacing" : isMobileSized.value ? "-0.36px" : "-0.42px",
|
|
44
|
+
"--fs-font-overline-font-size" : isMobileSized.value ? "10px" : "12px",
|
|
45
|
+
"--fs-font-overline-line-height" : isMobileSized.value ? "16px" : "16px",
|
|
46
|
+
"--fs-font-overline-letter-spacing": isMobileSized.value ? "0" : "0",
|
|
47
|
+
...bodyStyle.value
|
|
48
|
+
}));
|
|
49
|
+
|
|
50
|
+
const bodyStyle = computed(() => ({
|
|
51
|
+
"--fs-font-body-font-size" : isMobileSized.value ? "12px" : "14px",
|
|
52
|
+
"--fs-font-body-line-height" : isMobileSized.value ? "16px" : "20px",
|
|
53
|
+
"--fs-font-body-letter-spacing": isMobileSized.value ? "-0.36px" : "-0.42px",
|
|
54
|
+
}));
|
|
55
|
+
|
|
31
56
|
return {
|
|
32
57
|
isTouchScreenEnabled,
|
|
33
58
|
isMobileSized,
|
|
34
59
|
isExtraSmall,
|
|
35
60
|
windowHeight,
|
|
36
|
-
windowWidth
|
|
61
|
+
windowWidth,
|
|
62
|
+
fontStyles,
|
|
63
|
+
bodyStyle
|
|
37
64
|
};
|
|
38
65
|
}
|
package/models/tables.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dative-gpi/foundation-shared-components",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.84",
|
|
5
5
|
"description": "",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"author": "",
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@dative-gpi/foundation-shared-domain": "1.0.
|
|
14
|
-
"@dative-gpi/foundation-shared-services": "1.0.
|
|
13
|
+
"@dative-gpi/foundation-shared-domain": "1.0.84",
|
|
14
|
+
"@dative-gpi/foundation-shared-services": "1.0.84"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
17
|
"@dative-gpi/bones-ui": "^1.0.0",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"sass": "1.71.1",
|
|
36
36
|
"sass-loader": "13.3.2"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "a7eaef654fe35badd76832b3d07ea64bb6979d97"
|
|
39
39
|
}
|
|
@@ -52,20 +52,11 @@ button:has(.fs-clickable) {
|
|
|
52
52
|
.fs-clickable-load {
|
|
53
53
|
cursor: default;
|
|
54
54
|
position: absolute !important;
|
|
55
|
+
height: 100% !important;
|
|
55
56
|
width: 100% !important;
|
|
56
57
|
left: 0;
|
|
57
58
|
top: 0;
|
|
58
|
-
|
|
59
|
-
@include web {
|
|
60
|
-
height: 40px !important;
|
|
61
|
-
padding: 8px 0;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
@include mobile {
|
|
65
|
-
height: 36px !important;
|
|
66
|
-
padding: 6px 0;
|
|
67
|
-
}
|
|
68
|
-
|
|
59
|
+
|
|
69
60
|
& > svg {
|
|
70
61
|
height: 24px !important;
|
|
71
62
|
}
|
|
@@ -33,16 +33,6 @@
|
|
|
33
33
|
text-align: center;
|
|
34
34
|
cursor: var(--fs-clock-field-cursor) !important;
|
|
35
35
|
color: var(--fs-clock-field-color);
|
|
36
|
-
|
|
37
|
-
@include web {
|
|
38
|
-
min-height: 38px !important;
|
|
39
|
-
height: 38px !important;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
@include mobile {
|
|
43
|
-
min-height: 34px !important;
|
|
44
|
-
height: 34px !important;
|
|
45
|
-
}
|
|
46
36
|
}
|
|
47
37
|
}
|
|
48
38
|
}
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
|
|
42
42
|
th {
|
|
43
43
|
box-shadow: none !important;
|
|
44
|
+
min-width: 40px;
|
|
44
45
|
|
|
45
46
|
&:hover .fs-header-button {
|
|
46
47
|
opacity: 1;
|
|
@@ -120,13 +121,7 @@
|
|
|
120
121
|
}
|
|
121
122
|
|
|
122
123
|
.fs-data-table-pagination {
|
|
123
|
-
|
|
124
|
-
max-width: 280px;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
@include mobile {
|
|
128
|
-
max-width: 274px;
|
|
129
|
-
}
|
|
124
|
+
max-width: 280px;
|
|
130
125
|
}
|
|
131
126
|
|
|
132
127
|
.fs-data-table-intersection {
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
// If the custom property value is
|
|
2
|
-
.fs-meta-field .v-field
|
|
3
|
-
|
|
4
|
-
content-visibility: hidden;
|
|
5
|
-
}
|
|
1
|
+
// If the custom property value is an icon, hide the input value to show only the icon
|
|
2
|
+
.fs-meta-icon-field .v-field .v-field__input {
|
|
3
|
+
content-visibility: hidden;
|
|
6
4
|
}
|
|
@@ -11,15 +11,4 @@
|
|
|
11
11
|
|
|
12
12
|
.fs-radio-description {
|
|
13
13
|
color: var(--fs-radio-color) !important;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.fs-radio-label .v-input__control {
|
|
17
|
-
@include web {
|
|
18
|
-
height: 40px !important;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
@include mobile {
|
|
22
|
-
height: 36px !important;
|
|
23
|
-
}
|
|
24
|
-
grid-area: 1 / 2 / 3 / 3 !important;
|
|
25
14
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
.fs-rich-text-field {
|
|
2
2
|
width: 100%;
|
|
3
3
|
min-width: 120px;
|
|
4
|
+
padding: var(--fs-rich-text-field-padding) !important;
|
|
4
5
|
border: 1px solid var(--fs-rich-text-field-border-color) !important;
|
|
5
6
|
border-radius: 4px !important;
|
|
6
7
|
|
|
@@ -27,16 +28,6 @@
|
|
|
27
28
|
}
|
|
28
29
|
}
|
|
29
30
|
|
|
30
|
-
.fs-rich-text-field-readonly {
|
|
31
|
-
@include web {
|
|
32
|
-
padding: 10px 12px !important;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
@include mobile {
|
|
36
|
-
padding: 6px 16px !important;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
31
|
.fs-rich-text-field-undo {
|
|
41
32
|
transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
|
|
42
33
|
cursor: var(--fs-rich-text-field-undo-cursor);
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
.fs-span {
|
|
2
|
-
// padding-inline-end: 2px;
|
|
3
2
|
max-width: 100%;
|
|
4
3
|
text-align: left;
|
|
5
4
|
}
|
|
@@ -7,6 +6,7 @@
|
|
|
7
6
|
.fs-span-line-clamp {
|
|
8
7
|
overflow: hidden;
|
|
9
8
|
display: -webkit-box;
|
|
9
|
+
line-clamp: var(--fs-span-line-clamp);
|
|
10
10
|
-webkit-box-orient: vertical;
|
|
11
11
|
-webkit-line-clamp: var(--fs-span-line-clamp);
|
|
12
12
|
}
|
|
@@ -2,17 +2,9 @@
|
|
|
2
2
|
display: flex !important;
|
|
3
3
|
width: 100% !important;
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
min-height: 48px;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
@include mobile {
|
|
12
|
-
height: 40px !important;
|
|
13
|
-
max-height: 40px;
|
|
14
|
-
min-height: 40px;
|
|
15
|
-
}
|
|
5
|
+
height: var(--fs-tab-height) !important;
|
|
6
|
+
max-height: var(--fs-tab-height);
|
|
7
|
+
min-height: var(--fs-tab-height);
|
|
16
8
|
}
|
|
17
9
|
|
|
18
10
|
.fs-tab {
|
|
@@ -23,6 +15,10 @@
|
|
|
23
15
|
align-items: center !important;
|
|
24
16
|
display: flex;
|
|
25
17
|
|
|
18
|
+
height: var(--fs-tab-height) !important;
|
|
19
|
+
max-height: var(--fs-tab-height);
|
|
20
|
+
min-height: var(--fs-tab-height);
|
|
21
|
+
|
|
26
22
|
& .fs-tab-label {
|
|
27
23
|
@extend .text-button;
|
|
28
24
|
}
|
|
@@ -31,18 +27,6 @@
|
|
|
31
27
|
border-bottom: 1px solid var(--fs-tab-hover-border-color) !important;
|
|
32
28
|
color: var(--fs-group-hover-color) !important;
|
|
33
29
|
}
|
|
34
|
-
|
|
35
|
-
@include web {
|
|
36
|
-
height: 48px !important;
|
|
37
|
-
max-height: 48px;
|
|
38
|
-
min-height: 48px;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
@include mobile {
|
|
42
|
-
height: 40px !important;
|
|
43
|
-
max-height: 40px;
|
|
44
|
-
min-height: 40px;
|
|
45
|
-
}
|
|
46
30
|
}
|
|
47
31
|
|
|
48
32
|
.fs-tab-active {
|
|
@@ -64,13 +48,6 @@
|
|
|
64
48
|
align-items: center;
|
|
65
49
|
justify-content: center;
|
|
66
50
|
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
height: 28px;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
@include mobile {
|
|
73
|
-
min-width: 24px;
|
|
74
|
-
height: 24px;
|
|
75
|
-
}
|
|
51
|
+
min-width: var(--fs-tab-tag-size);
|
|
52
|
+
height: var(--fs-tab-tag-size);
|
|
76
53
|
}
|
|
@@ -3,14 +3,6 @@
|
|
|
3
3
|
border-radius: 2px !important;
|
|
4
4
|
background-color: var(--fs-tag-background-color) !important;
|
|
5
5
|
color: var(--fs-tag-color) !important;
|
|
6
|
-
|
|
7
|
-
@include web {
|
|
8
|
-
height: 28px !important;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
@include mobile {
|
|
12
|
-
height: 24px !important;
|
|
13
|
-
}
|
|
14
6
|
}
|
|
15
7
|
|
|
16
8
|
.fs-tag-button {
|
|
@@ -31,15 +23,7 @@
|
|
|
31
23
|
color: var(--fs-tag-active-color) !important;
|
|
32
24
|
}
|
|
33
25
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
height: 20px !important;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
@include mobile {
|
|
41
|
-
min-width: 20px !important;
|
|
42
|
-
width: 20px !important;
|
|
43
|
-
height: 16px !important;
|
|
44
|
-
}
|
|
26
|
+
min-width: 20px !important;
|
|
27
|
+
width: 20px !important;
|
|
28
|
+
height: 20px !important;
|
|
45
29
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
.fs-text-area:not(.fs-text-area-auto-grow) {
|
|
2
2
|
& > .v-input__control > .v-field {
|
|
3
3
|
border: 1px solid var(--fs-text-area-border-color) !important;
|
|
4
|
+
padding: var(--fs-text-area-padding) !important;
|
|
4
5
|
|
|
5
6
|
&--error {
|
|
6
7
|
border-color: var(--fs-text-area-error-border-color) !important;
|
|
@@ -24,18 +25,6 @@
|
|
|
24
25
|
color: var(--fs-text-area-color);
|
|
25
26
|
padding: 0;
|
|
26
27
|
}
|
|
27
|
-
|
|
28
|
-
& > .v-field__clearable {
|
|
29
|
-
align-items: flex-start;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
@include web {
|
|
33
|
-
padding: 11px 16px !important;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
@include mobile {
|
|
37
|
-
padding: 10px 16px !important;
|
|
38
|
-
}
|
|
39
28
|
}
|
|
40
29
|
|
|
41
30
|
& > .v-input__append {
|
|
@@ -46,7 +35,7 @@
|
|
|
46
35
|
.fs-text-area-auto-grow {
|
|
47
36
|
& > .v-input__control > .v-field {
|
|
48
37
|
border: 1px solid var(--fs-text-area-border-color) !important;
|
|
49
|
-
padding:
|
|
38
|
+
padding: var(--fs-text-area-padding) !important;
|
|
50
39
|
|
|
51
40
|
&--error {
|
|
52
41
|
border-color: var(--fs-text-area-error-border-color) !important;
|
|
@@ -72,14 +61,6 @@
|
|
|
72
61
|
& > .v-field__clearable {
|
|
73
62
|
align-items: flex-start;
|
|
74
63
|
}
|
|
75
|
-
|
|
76
|
-
@include web {
|
|
77
|
-
padding: 11px 16px !important;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
@include mobile {
|
|
81
|
-
padding: 10px 16px !important;
|
|
82
|
-
}
|
|
83
64
|
}
|
|
84
65
|
|
|
85
66
|
& > .v-input__append {
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
// Warning: Imports are loaded in order. If you need to use a variable / property / mixin, import it after the file that defines it
|
|
2
|
-
@import 'breakpoints.scss';
|
|
3
2
|
@import 'text_fonts.scss';
|
|
4
3
|
@import 'touchscreen.scss';
|
|
5
4
|
@import 'scrollbars.scss';
|
|
6
|
-
@import 'overrides.scss';
|
|
7
|
-
|
|
8
|
-
// Find a better way to fix this
|
|
9
|
-
@import 'fixes.scss';
|
|
5
|
+
@import 'overrides.scss';
|
|
@@ -45,16 +45,6 @@
|
|
|
45
45
|
width: 100%;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
&.v-checkbox {
|
|
49
|
-
@include web {
|
|
50
|
-
min-width: 24px;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
@include mobile {
|
|
54
|
-
min-width: 20px;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
48
|
&:has(.v-input__control):has(.v-input__append) > .v-input__append {
|
|
59
49
|
margin-inline-start: 8px !important;
|
|
60
50
|
}
|
|
@@ -90,29 +80,27 @@
|
|
|
90
80
|
}
|
|
91
81
|
}
|
|
92
82
|
|
|
93
|
-
&:not(.fs-text-area) > .v-input__control > .v-field {
|
|
94
|
-
|
|
83
|
+
&:not(.fs-text-area) > .v-input__control > .v-field > .v-field__field {
|
|
84
|
+
min-height: var(--fs-base-field-input-height) !important;
|
|
85
|
+
height: var(--fs-base-field-input-height) !important;
|
|
95
86
|
|
|
96
|
-
& > .v-
|
|
97
|
-
|
|
87
|
+
& > .v-field__input {
|
|
88
|
+
min-height: var(--fs-base-field-input-height) !important;
|
|
89
|
+
height: var(--fs-base-field-input-height) !important;
|
|
98
90
|
|
|
99
91
|
padding-bottom: 0px !important;
|
|
100
92
|
padding-inline: 0px !important;
|
|
101
93
|
padding-top: 0px !important;
|
|
102
94
|
flex-wrap: nowrap;
|
|
103
95
|
overflow: hidden;
|
|
104
|
-
|
|
105
|
-
@
|
|
106
|
-
min-height: 38px !important;
|
|
107
|
-
height: 38px !important;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
@include mobile {
|
|
111
|
-
min-height: 34px !important;
|
|
112
|
-
height: 34px !important;
|
|
113
|
-
}
|
|
96
|
+
|
|
97
|
+
@extend .text-body;
|
|
114
98
|
}
|
|
115
99
|
}
|
|
100
|
+
|
|
101
|
+
&:not(.fs-text-area):not(.fs-clock-field) > .v-input__control > .v-field {
|
|
102
|
+
padding: 0 12px 0 16px !important;
|
|
103
|
+
}
|
|
116
104
|
}
|
|
117
105
|
|
|
118
106
|
// If there is a prepend, it has a padding on the right and an opacity of 100%
|
|
@@ -141,15 +129,8 @@
|
|
|
141
129
|
.v-text-field__suffix {
|
|
142
130
|
padding: 0 8px 0 0 !important;
|
|
143
131
|
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
height: 38px !important;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
@include mobile {
|
|
150
|
-
min-height: 34px !important;
|
|
151
|
-
height: 34px !important;
|
|
152
|
-
}
|
|
132
|
+
min-height: var(--fs-base-field-input-height) !important;
|
|
133
|
+
height: var(--fs-base-field-input-height) !important;
|
|
153
134
|
|
|
154
135
|
& > .v-text-field__suffix__text {
|
|
155
136
|
@extend .text-body;
|
|
@@ -196,13 +177,7 @@ $nthOverlay: 25;
|
|
|
196
177
|
}
|
|
197
178
|
|
|
198
179
|
& > .v-icon {
|
|
199
|
-
|
|
200
|
-
font-size: 24px !important;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
@include mobile {
|
|
204
|
-
font-size: 20px !important;
|
|
205
|
-
}
|
|
180
|
+
font-size: var(--fs-group-icon-size) !important;
|
|
206
181
|
}
|
|
207
182
|
}
|
|
208
183
|
|
|
@@ -7,17 +7,9 @@
|
|
|
7
7
|
font-style: normal !important;
|
|
8
8
|
font-weight: 700 !important;
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
letter-spacing: -0.72px !important;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
@include mobile {
|
|
17
|
-
font-size: 28px !important;
|
|
18
|
-
line-height: 32px !important;
|
|
19
|
-
letter-spacing: -1.4px !important;
|
|
20
|
-
}
|
|
10
|
+
font-size: var(--fs-font-h1-font-size) !important;
|
|
11
|
+
line-height: var(--fs-font-h1-line-height) !important;
|
|
12
|
+
letter-spacing: var(--fs-font-h1-letter-spacing) !important;
|
|
21
13
|
}
|
|
22
14
|
|
|
23
15
|
.text-h2 {
|
|
@@ -25,17 +17,9 @@
|
|
|
25
17
|
font-style: normal !important;
|
|
26
18
|
font-weight: 600 !important;
|
|
27
19
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
letter-spacing: -0.78px !important;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
@include mobile {
|
|
35
|
-
font-size: 22px !important;
|
|
36
|
-
line-height: 24px !important;
|
|
37
|
-
letter-spacing: -0.88px !important;
|
|
38
|
-
}
|
|
20
|
+
font-size: var(--fs-font-h2-font-size) !important;
|
|
21
|
+
line-height: var(--fs-font-h2-line-height) !important;
|
|
22
|
+
letter-spacing: var(--fs-font-h2-letter-spacing) !important;
|
|
39
23
|
}
|
|
40
24
|
|
|
41
25
|
.text-h3 {
|
|
@@ -43,17 +27,9 @@
|
|
|
43
27
|
font-style: normal !important;
|
|
44
28
|
font-weight: 600 !important;
|
|
45
29
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
letter-spacing: -0.6px !important;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
@include mobile {
|
|
53
|
-
font-size: 16px !important;
|
|
54
|
-
line-height: 20px !important;
|
|
55
|
-
letter-spacing: -0.48px !important;
|
|
56
|
-
}
|
|
30
|
+
font-size: var(--fs-font-h3-font-size) !important;
|
|
31
|
+
line-height: var(--fs-font-h3-line-height) !important;
|
|
32
|
+
letter-spacing: var(--fs-font-h3-letter-spacing) !important;
|
|
57
33
|
}
|
|
58
34
|
|
|
59
35
|
.text-body {
|
|
@@ -62,17 +38,9 @@
|
|
|
62
38
|
font-weight: 500 !important;
|
|
63
39
|
text-transform: none !important;
|
|
64
40
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
letter-spacing: -0.42px !important;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
@include mobile {
|
|
72
|
-
font-size: 12px !important;
|
|
73
|
-
line-height: 16px !important;
|
|
74
|
-
letter-spacing: -0.36px !important;
|
|
75
|
-
}
|
|
41
|
+
font-size: var(--fs-font-body-font-size) !important;
|
|
42
|
+
line-height: var(--fs-font-body-line-height) !important;
|
|
43
|
+
letter-spacing: var(--fs-font-body-letter-spacing) !important;
|
|
76
44
|
}
|
|
77
45
|
|
|
78
46
|
.text-button {
|
|
@@ -81,17 +49,9 @@
|
|
|
81
49
|
font-weight: 700 !important;
|
|
82
50
|
text-transform: none !important;
|
|
83
51
|
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
letter-spacing: -0.42px !important;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
@include mobile {
|
|
91
|
-
font-size: 12px !important;
|
|
92
|
-
line-height: 16px !important;
|
|
93
|
-
letter-spacing: -0.36px !important;
|
|
94
|
-
}
|
|
52
|
+
font-size: var(--fs-font-button-font-size) !important;
|
|
53
|
+
line-height: var(--fs-font-button-line-height) !important;
|
|
54
|
+
letter-spacing: var(--fs-font-button-letter-spacing) !important;
|
|
95
55
|
}
|
|
96
56
|
|
|
97
57
|
.text-overline {
|
|
@@ -100,15 +60,7 @@
|
|
|
100
60
|
text-transform: none !important;
|
|
101
61
|
font-weight: 600 !important;
|
|
102
62
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
letter-spacing: 0 !important;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
@include mobile {
|
|
110
|
-
font-size: 10px !important;
|
|
111
|
-
line-height: 16px !important;
|
|
112
|
-
letter-spacing: 0 !important;
|
|
113
|
-
}
|
|
63
|
+
font-size: var(--fs-font-overline-font-size) !important;
|
|
64
|
+
line-height: var(--fs-font-overline-line-height) !important;
|
|
65
|
+
letter-spacing: var(--fs-font-overline-letter-spacing) !important;
|
|
114
66
|
}
|