@dative-gpi/foundation-shared-components 1.0.82 → 1.0.83

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.
Files changed (38) hide show
  1. package/components/FSClickable.vue +0 -1
  2. package/components/FSClock.vue +12 -3
  3. package/components/FSLoader.vue +2 -2
  4. package/components/FSSlideGroup.vue +9 -7
  5. package/components/FSSpan.vue +4 -2
  6. package/components/FSTabs.vue +5 -2
  7. package/components/FSTag.vue +1 -1
  8. package/components/FSText.vue +4 -2
  9. package/components/fields/FSAutocompleteField.vue +18 -14
  10. package/components/fields/FSRichTextField.vue +25 -19
  11. package/components/fields/FSSelectField.vue +7 -3
  12. package/components/fields/FSTextArea.vue +10 -4
  13. package/components/fields/FSTextField.vue +8 -3
  14. package/components/lists/FSDataTableUI.vue +40 -12
  15. package/components/tiles/FSLoadTile.vue +2 -0
  16. package/components/tiles/FSTile.vue +4 -1
  17. package/components/views/desktop/FSBaseEntityDesktopView.vue +5 -3
  18. package/composables/useBreakpoints.ts +32 -5
  19. package/models/tables.ts +1 -0
  20. package/package.json +4 -4
  21. package/styles/components/fs_clickable.scss +2 -11
  22. package/styles/components/fs_clock.scss +0 -10
  23. package/styles/components/fs_data_table.scss +2 -7
  24. package/styles/components/fs_filter_button.scss +1 -1
  25. package/styles/components/fs_hidden_button.scss +2 -7
  26. package/styles/components/fs_meta_field.scss +3 -5
  27. package/styles/components/fs_radio.scss +0 -11
  28. package/styles/components/fs_rich_text_field.scss +1 -10
  29. package/styles/components/fs_span.scss +1 -1
  30. package/styles/components/fs_tabs.scss +9 -32
  31. package/styles/components/fs_tag.scss +3 -19
  32. package/styles/components/fs_text_area.scss +2 -21
  33. package/styles/components/fs_tile.scss +0 -10
  34. package/styles/globals/index.scss +1 -5
  35. package/styles/globals/overrides.scss +15 -40
  36. package/styles/globals/text_fonts.scss +18 -66
  37. package/styles/globals/breakpoints.scss +0 -20
  38. package/styles/globals/fixes.scss +0 -5
@@ -2,13 +2,13 @@ import { computed, ref } from "vue";
2
2
 
3
3
  let initialized = false;
4
4
 
5
- const windowHeight = ref(window.innerHeight);
6
- const windowWidth = ref(window.innerWidth);
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.innerHeight;
11
- windowWidth.value = window.innerWidth;
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
@@ -39,6 +39,7 @@ export interface FSDataTable {
39
39
  sortBy: FSDataTableOrder | null;
40
40
  mode: "table" | "iterator" | null;
41
41
  rowsPerPage: -1 | 10 | 30;
42
+ showFilters: boolean;
42
43
  filters: { [key: string]: FSDataTableFilter[] };
43
44
  page: number;
44
45
  }
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.82",
4
+ "version": "1.0.83",
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.82",
14
- "@dative-gpi/foundation-shared-services": "1.0.82"
13
+ "@dative-gpi/foundation-shared-domain": "1.0.83",
14
+ "@dative-gpi/foundation-shared-services": "1.0.83"
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": "f210728193cfa965fd7827c935319f80af51d9a0"
38
+ "gitHead": "38c4f9debe8e6bba7fe7c2f46197d04b28ce1ade"
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
- @include web {
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,5 +1,5 @@
1
1
  .fs-filter-button-menu {
2
- min-width: 300px !important;
2
+ width: 300px;
3
3
  }
4
4
 
5
5
  .fs-filter-button-chip {
@@ -1,12 +1,7 @@
1
1
  .fs-hidden-button-menu {
2
- @include web {
3
- min-width: 200px !important;
4
- }
5
- @include mobile {
6
- min-width: 180px !important;
7
- }
2
+ width: 300px;
8
3
  }
9
4
 
10
5
  .fs-hidden-button-chip {
11
- width: calc(100% - 16px) !important;
6
+ width: 100%;
12
7
  }
@@ -1,6 +1,4 @@
1
- // If the custom property value is a boolean or an icon, hide the FSTextField input value in a FSMetaField while on mobile
2
- .fs-meta-field .v-field:has(.v-field__prepend-inner:not(:empty)) input {
3
- @include mobile {
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
- @include web {
6
- height: 48px !important;
7
- max-height: 48px;
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
- @include web {
68
- min-width: 28px;
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
- @include web {
35
- min-width: 20px !important;
36
- width: 20px !important;
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: 0 !important;
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 {
@@ -32,16 +32,6 @@
32
32
  justify-content: center;
33
33
  top: 1px;
34
34
  right: 1px;
35
-
36
- @include web {
37
- width: 40px;
38
- height: 40px;
39
- }
40
-
41
- @include mobile {
42
- width: 32px;
43
- height: 32px;
44
- }
45
35
  }
46
36
 
47
37
  .fs-location-tile-text-container {
@@ -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
- padding: 0 12px 0 16px !important;
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-field__field > .v-field__input {
97
- @extend .text-body;
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
- @include web {
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
- @include web {
145
- min-height: 38px !important;
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
- @include web {
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
- @include web {
11
- font-size: 36px !important;
12
- line-height: 40px !important;
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
- @include web {
29
- font-size: 26px !important;
30
- line-height: 32px !important;
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
- @include web {
47
- font-size: 20px !important;
48
- line-height: 24px !important;
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
- @include web {
66
- font-size: 14px !important;
67
- line-height: 20px !important;
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
- @include web {
85
- font-size: 14px !important;
86
- line-height: 20px !important;
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
- @include web {
104
- font-size: 12px !important;
105
- line-height: 16px !important;
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
  }
@@ -1,20 +0,0 @@
1
- $extra-small-breakpoint: 599px;
2
- $mobile-breakpoint: 1264px;
3
-
4
- @mixin extra-small {
5
- @media only screen and (max-width: $extra-small-breakpoint) {
6
- @content;
7
- }
8
- }
9
-
10
- @mixin mobile {
11
- @media only screen and (max-width: $mobile-breakpoint) {
12
- @content;
13
- }
14
- }
15
-
16
- @mixin web {
17
- @media screen and (min-width: ($mobile-breakpoint - 1)) {
18
- @content;
19
- }
20
- }
@@ -1,5 +0,0 @@
1
- .fs-tab > .v-btn__content > .fs-row > .text-button {
2
- @include web {
3
- padding-top: 2px !important;
4
- }
5
- }