@avenirs-esr/avenirs-dsav 0.1.76 → 0.1.78
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/avenirs-dsav.css +1 -3
- package/dist/components/badges/AvBadge/AvBadge.stories.d.ts +1 -1
- package/dist/components/badges/AvBadge/AvBadge.vue.d.ts +0 -10
- package/dist/components/badges/AvTag/AvTag.stories.d.ts +0 -1
- package/dist/components/badges/AvTag/AvTag.vue.d.ts +0 -20
- package/dist/components/base/AvFieldset/AvFieldset.vue.d.ts +24 -4
- package/dist/components/base/AvFieldsetElement/AvFieldsetElement.vue.d.ts +29 -0
- package/dist/components/base/AvIconText/AvIconText.stub.d.ts +7 -0
- package/dist/components/base/AvMessage/AvMessage.stories.d.ts +27 -0
- package/dist/components/base/AvMessage/AvMessage.test.d.ts +1 -0
- package/dist/components/base/AvMessage/AvMessage.vue.d.ts +21 -0
- package/dist/components/base/AvNotice/AvNotice.stories.d.ts +1 -0
- package/dist/components/base/index.d.ts +1 -0
- package/dist/components/feedback/AvAlert/AvAlert.stories.d.ts +69 -0
- package/dist/components/feedback/AvAlert/AvAlert.vue.d.ts +0 -5
- package/dist/components/interaction/buttons/AvButton/AvButton.stories.d.ts +1 -1
- package/dist/components/interaction/buttons/AvButton/AvButton.vue.d.ts +9 -9
- package/dist/components/interaction/checkboxes/AvCheckbox/AvChecbox.stories.d.ts +4 -0
- package/dist/components/interaction/checkboxes/AvCheckbox/AvCheckbox.vue.d.ts +1 -1
- package/dist/components/interaction/checkboxes/AvCheckboxesGroup/AvCheckboxesGroup.stories.d.ts +38 -0
- package/dist/components/interaction/checkboxes/AvCheckboxesGroup/AvCheckboxesGroup.vue.d.ts +46 -0
- package/dist/components/interaction/checkboxes/index.d.ts +1 -0
- package/dist/components/interaction/inputs/AvSearchBar/AvSearchBar.vue.d.ts +3 -0
- package/dist/components/interaction/lists/AvList/AvList.stories.d.ts +2 -2
- package/dist/components/interaction/lists/AvListItem/AvListItem.stories.d.ts +4 -4
- package/dist/components/interaction/radios/AvRadioButtonSet/AvRadioButtonSet.stories.d.ts +1 -0
- package/dist/components/interaction/selects/AvAutocomplete/AvAutocomplete.stories.d.ts +9 -0
- package/dist/components/interaction/selects/AvMultiselect/AvMultiselect.stories.d.ts +3 -0
- package/dist/components/interaction/selects/AvMultiselect/AvMultiselect.vue.d.ts +0 -5
- package/dist/components/interaction/selects/AvMultiselect/components/MultiselectCollapse.vue.d.ts +2 -13
- package/dist/components/interaction/selects/AvSelect/AvSelect.stories.d.ts +1 -1
- package/dist/components/interaction/selects/AvSelect/AvSelect.vue.d.ts +3 -0
- package/dist/components/navigation/AvPagination/AvPagination.stories.d.ts +28 -0
- package/dist/components/navigation/AvSideMenu/AvSideMenu.stories.d.ts +3 -3
- package/dist/components/navigation/AvSideNavigation/AvSideNavigation.stories.d.ts +4 -4
- package/dist/components/navigation/AvStepper/AvStepper.vue.d.ts +1 -3
- package/dist/components/overlay/drawers/AvDrawer/AvDrawer.stories.d.ts +3 -3
- package/dist/components/overlay/dropdowns/AvDropdown/AvDropdown.stub.d.ts +2 -2
- package/dist/components/overlay/dropdowns/AvDropdown/AvDropdown.vue.d.ts +6 -6
- package/dist/components/overlay/modals/AvModal/AvModal.stories.d.ts +36 -0
- package/dist/components/overlay/modals/AvModal/AvModal.vue.d.ts +0 -5
- package/dist/components/overlay/popovers/AvPopover/AvPopover.vue.d.ts +1 -5
- package/dist/composables/use-av-breakpoints/use-av-breakpoints.d.ts +3 -0
- package/dist/composables/use-collapsable/use-collapsable.d.ts +1 -1
- package/dist/index.cjs.js +5 -5
- package/dist/index.es.js +6245 -6128
- package/dist/main.d.ts +0 -5
- package/dist/stories/foundations/icons.stories.d.ts +1 -0
- package/dist/test-utils.cjs.js +15 -15
- package/dist/test-utils.es.js +37 -32
- package/dist/tests/index.d.ts +2 -1
- package/dist/tokens/icons.d.ts +12 -0
- package/package.json +1 -2
- package/src/styles/components/_buttons.scss +9 -0
- package/src/styles/components/_collapse.scss +37 -0
- package/src/styles/components/_footer.scss +15 -0
- package/src/styles/components/_form.scss +50 -0
- package/src/styles/components/_grid.scss +182 -0
- package/src/styles/components/_links.scss +6 -0
- package/src/styles/components/_menu.scss +59 -0
- package/src/styles/components/_navigation.scss +122 -0
- package/src/styles/components/_selects.scss +13 -0
- package/src/styles/{texts.scss → components/_texts.scss} +11 -0
- package/src/styles/core/_accessibility.scss +14 -0
- package/src/styles/core/_cursors.scss +47 -0
- package/src/styles/{dimensions.scss → core/_dimensions.scss} +1 -0
- package/src/styles/core/_focus.scss +66 -0
- package/src/styles/core/_hover.scss +22 -0
- package/src/styles/core/_namespace.scss +9 -0
- package/src/styles/{palette.scss → core/_palette.scss} +2 -0
- package/src/styles/core/_spacing.scss +33 -0
- package/src/styles/{typography.scss → core/_typography.scss} +40 -1
- package/src/styles/main.scss +41 -25
- package/src/styles/settings/_breakpoints.scss +33 -0
- package/src/styles/utilities/_helpers.scss +136 -0
- package/src/styles/utilities/_spacing.scss +48 -0
- package/src/styles/buttons.scss +0 -24
- package/src/styles/spacing.scss +0 -21
- /package/src/styles/{radius.scss → core/_radius.scss} +0 -0
|
@@ -1,5 +1,37 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'Luciole';
|
|
3
|
+
src: url('@/assets/fonts/luciole/Luciole-Regular.woff2') format('woff2');
|
|
4
|
+
font-weight: 400;
|
|
5
|
+
font-style: normal;
|
|
6
|
+
font-display: swap;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@font-face {
|
|
10
|
+
font-family: 'Luciole';
|
|
11
|
+
src: url('@/assets/fonts/luciole/Luciole-Bold.woff2') format('woff2');
|
|
12
|
+
font-weight: 700;
|
|
13
|
+
font-style: normal;
|
|
14
|
+
font-display: swap;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@font-face {
|
|
18
|
+
font-family: 'Luciole';
|
|
19
|
+
src: url('@/assets/fonts/luciole/Luciole-BoldItalic.woff2') format('woff2');
|
|
20
|
+
font-weight: 700;
|
|
21
|
+
font-style: italic;
|
|
22
|
+
font-display: swap;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@font-face {
|
|
26
|
+
font-family: 'Luciole';
|
|
27
|
+
src: url('@/assets/fonts/luciole/Luciole-Italic.woff2') format('woff2');
|
|
28
|
+
font-weight: 400;
|
|
29
|
+
font-style: italic;
|
|
30
|
+
font-display: swap;
|
|
31
|
+
}
|
|
32
|
+
|
|
1
33
|
:root {
|
|
2
|
-
--font-family-primary: '
|
|
34
|
+
--font-family-primary: 'Luciole', 'arial', sans-serif;
|
|
3
35
|
--font-weight-light: 300;
|
|
4
36
|
--font-weight-regular: 400;
|
|
5
37
|
--font-weight-bold: 700;
|
|
@@ -51,6 +83,7 @@
|
|
|
51
83
|
color: var(--text1);
|
|
52
84
|
}
|
|
53
85
|
|
|
86
|
+
p,
|
|
54
87
|
.b1-regular {
|
|
55
88
|
font-family: var(--font-family-primary);
|
|
56
89
|
font-weight: var(--font-weight-regular);
|
|
@@ -114,6 +147,7 @@
|
|
|
114
147
|
color: var(--text2);
|
|
115
148
|
}
|
|
116
149
|
|
|
150
|
+
h1,
|
|
117
151
|
.n1 {
|
|
118
152
|
font-family: var(--font-family-primary);
|
|
119
153
|
font-weight: var(--font-weight-light);
|
|
@@ -122,6 +156,7 @@
|
|
|
122
156
|
color: var(--title);
|
|
123
157
|
}
|
|
124
158
|
|
|
159
|
+
h2,
|
|
125
160
|
.n2 {
|
|
126
161
|
font-family: var(--font-family-primary);
|
|
127
162
|
font-weight: var(--font-weight-light);
|
|
@@ -130,6 +165,7 @@
|
|
|
130
165
|
color: var(--title);
|
|
131
166
|
}
|
|
132
167
|
|
|
168
|
+
h3,
|
|
133
169
|
.n3 {
|
|
134
170
|
font-family: var(--font-family-primary);
|
|
135
171
|
font-weight: var(--font-weight-regular);
|
|
@@ -138,6 +174,7 @@
|
|
|
138
174
|
color: var(--title);
|
|
139
175
|
}
|
|
140
176
|
|
|
177
|
+
h4,
|
|
141
178
|
.n4 {
|
|
142
179
|
font-family: var(--font-family-primary);
|
|
143
180
|
font-weight: var(--font-weight-regular);
|
|
@@ -146,6 +183,7 @@
|
|
|
146
183
|
color: var(--title);
|
|
147
184
|
}
|
|
148
185
|
|
|
186
|
+
h5,
|
|
149
187
|
.n5 {
|
|
150
188
|
font-family: var(--font-family-primary);
|
|
151
189
|
font-weight: var(--font-weight-regular);
|
|
@@ -154,6 +192,7 @@
|
|
|
154
192
|
color: var(--title);
|
|
155
193
|
}
|
|
156
194
|
|
|
195
|
+
h6,
|
|
157
196
|
.n6 {
|
|
158
197
|
font-family: var(--font-family-primary);
|
|
159
198
|
font-weight: var(--font-weight-bold);
|
package/src/styles/main.scss
CHANGED
|
@@ -1,42 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
@use './
|
|
3
|
-
@use './
|
|
4
|
-
@use './
|
|
5
|
-
@use './
|
|
6
|
-
@use './
|
|
7
|
-
@use './
|
|
1
|
+
// === Core ===
|
|
2
|
+
@use './core/palette' as *;
|
|
3
|
+
@use './core/typography' as *;
|
|
4
|
+
@use './core/focus' as *;
|
|
5
|
+
@use './core/hover' as *;
|
|
6
|
+
@use './core/cursors' as *;
|
|
7
|
+
@use './core/spacing' as *;
|
|
8
|
+
@use './core/radius' as *;
|
|
9
|
+
@use './core/dimensions' as *;
|
|
10
|
+
@use './core/accessibility' as *;
|
|
8
11
|
|
|
9
|
-
|
|
10
|
-
@use '
|
|
11
|
-
@use '@gouvfr/dsfr/dist/utility/utility.main.min.css';
|
|
12
|
-
@use '@gouvfr/dsfr/dist/scheme/scheme.min.css';
|
|
13
|
-
@use '@gouvfr/dsfr/dist/utility/icons/icons.min.css';
|
|
12
|
+
// === Settings ===
|
|
13
|
+
@use './settings/breakpoints' as *;
|
|
14
14
|
|
|
15
|
+
// === Components ===
|
|
16
|
+
@use './components/grid' as *;
|
|
17
|
+
@use './components/buttons' as *;
|
|
18
|
+
@use './components/collapse' as *;
|
|
19
|
+
@use './components/form' as *;
|
|
20
|
+
@use './components/links' as *;
|
|
21
|
+
@use './components/texts' as *;
|
|
22
|
+
@use './components/selects' as *;
|
|
23
|
+
@use './components/navigation' as *;
|
|
24
|
+
@use './components/menu' as *;
|
|
25
|
+
@use './components/footer' as *;
|
|
26
|
+
|
|
27
|
+
// === Utilities ===
|
|
28
|
+
@use './utilities/helpers' as *;
|
|
29
|
+
@use './utilities/spacing' as *;
|
|
30
|
+
|
|
31
|
+
// === Global ===
|
|
15
32
|
:root {
|
|
16
|
-
--default-global-background-color: var(--other-background-base)
|
|
33
|
+
--default-global-background-color: var(--other-background-base);
|
|
17
34
|
--global-background-color: var(--default-global-background-color);
|
|
18
35
|
}
|
|
19
36
|
|
|
37
|
+
// === Base styles ===
|
|
20
38
|
html,
|
|
21
39
|
body,
|
|
22
40
|
#app {
|
|
23
41
|
height: 100%;
|
|
24
42
|
background-color: var(--global-background-color);
|
|
43
|
+
font-family: var(--font-family-primary);
|
|
44
|
+
margin: var(--spacing-none);
|
|
25
45
|
}
|
|
26
46
|
|
|
27
|
-
|
|
28
|
-
max-width: 90rem !important;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
:root[demo-mode="true"] .demo-display-none {
|
|
32
|
-
display: none !important;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.h-full {
|
|
36
|
-
height: 100%;
|
|
37
|
-
}
|
|
38
|
-
|
|
47
|
+
// === Reset headers ===
|
|
39
48
|
h1, h2, h3, h4, h5, h6 {
|
|
40
49
|
margin-bottom: 0;
|
|
41
50
|
margin-top: 0;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// === Typography base ===
|
|
54
|
+
*,
|
|
55
|
+
::before,
|
|
56
|
+
::after {
|
|
57
|
+
font-family: var(--font-family-primary);
|
|
42
58
|
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
|
|
3
|
+
$breakpoints: (
|
|
4
|
+
sm: 36rem, // 576px
|
|
5
|
+
md: 48rem, // 768px
|
|
6
|
+
lg: 64rem, // 1024px
|
|
7
|
+
xl: 90rem, // 1440px
|
|
8
|
+
);
|
|
9
|
+
|
|
10
|
+
// === Mixins for media queries ===
|
|
11
|
+
@mixin min-width($size) {
|
|
12
|
+
$breakpoint: map.get($breakpoints, $size);
|
|
13
|
+
|
|
14
|
+
@if $breakpoint {
|
|
15
|
+
@media (min-width: $breakpoint) {
|
|
16
|
+
@content;
|
|
17
|
+
}
|
|
18
|
+
} @else {
|
|
19
|
+
@warn "⚠️ Breakpoint `#{$size}` not found in $breakpoints map.";
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@mixin max-width($size) {
|
|
24
|
+
$breakpoint: map.get($breakpoints, $size);
|
|
25
|
+
|
|
26
|
+
@if $breakpoint {
|
|
27
|
+
@media (max-width: $breakpoint) {
|
|
28
|
+
@content;
|
|
29
|
+
}
|
|
30
|
+
} @else {
|
|
31
|
+
@warn "⚠️ Breakpoint `#{$size}` not found in $breakpoints map.";
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
@use '../settings/breakpoints' as bp;
|
|
2
|
+
@use '../core/namespace' as *;
|
|
3
|
+
|
|
4
|
+
// === Hidden class ===
|
|
5
|
+
@include ns("hidden") {
|
|
6
|
+
display: none !important;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
// === Breakpoint visibility classes ===
|
|
10
|
+
@each $bp-name, $bp-value in bp.$breakpoints {
|
|
11
|
+
@media (min-width: #{$bp-value}) {
|
|
12
|
+
@include ns("hidden-#{$bp-name}") {
|
|
13
|
+
display: none !important;
|
|
14
|
+
}
|
|
15
|
+
@include ns("unhidden-#{$bp-name}") {
|
|
16
|
+
display: inherit !important;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
// === No before/after classes ===
|
|
22
|
+
@include ns("no-after") {
|
|
23
|
+
&::after {
|
|
24
|
+
content: none !important;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@include ns("no-before") {
|
|
29
|
+
&::before {
|
|
30
|
+
content: none !important;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// === Enlarge link area ===
|
|
35
|
+
@include ns("enlarge-link") {
|
|
36
|
+
position: relative;
|
|
37
|
+
|
|
38
|
+
a {
|
|
39
|
+
background-image: none;
|
|
40
|
+
outline-width: 0;
|
|
41
|
+
|
|
42
|
+
&:before {
|
|
43
|
+
content: "";
|
|
44
|
+
display: block;
|
|
45
|
+
position: absolute;
|
|
46
|
+
top: 0;
|
|
47
|
+
left: 0;
|
|
48
|
+
right: 0;
|
|
49
|
+
bottom: 0;
|
|
50
|
+
width: 100%;
|
|
51
|
+
height: 100%;
|
|
52
|
+
outline-style: inherit;
|
|
53
|
+
outline-color: inherit;
|
|
54
|
+
outline-width: 2px;
|
|
55
|
+
outline-offset: 2px;
|
|
56
|
+
z-index: 1;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
&:active{
|
|
61
|
+
background-color:var(--light-background-neutral);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
&:hover{
|
|
65
|
+
background-color:var(--surface-background);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// === Demo mode visibility classes ===
|
|
70
|
+
:root[demo-mode="true"] .demo-display-none {
|
|
71
|
+
display: none !important;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// === Full height class ===
|
|
75
|
+
.h-full {
|
|
76
|
+
height: 100%;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
// === Reset link background image ===
|
|
80
|
+
a,
|
|
81
|
+
[href] {
|
|
82
|
+
background-image: none;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// === Reset button styles ===
|
|
86
|
+
button {
|
|
87
|
+
border:none;
|
|
88
|
+
color:inherit;
|
|
89
|
+
font-family:inherit;
|
|
90
|
+
font-size:inherit;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// === Reset form element styles ===
|
|
94
|
+
button,
|
|
95
|
+
input,
|
|
96
|
+
select,
|
|
97
|
+
textarea{
|
|
98
|
+
-webkit-appearance:none;
|
|
99
|
+
-moz-appearance:none;
|
|
100
|
+
appearance:none;
|
|
101
|
+
background-color:transparent;
|
|
102
|
+
margin:0;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// === Reset list styles ===
|
|
106
|
+
dl,
|
|
107
|
+
ol,
|
|
108
|
+
ul{
|
|
109
|
+
margin:0;
|
|
110
|
+
margin-block-end:0.5rem;
|
|
111
|
+
margin-block-start:0.5rem;
|
|
112
|
+
padding:0;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
ul{
|
|
116
|
+
list-style-type:disc;
|
|
117
|
+
padding-inline-start:1rem;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
ul>li::marker{
|
|
121
|
+
font-size:calc((1em)*.9);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
ol{
|
|
125
|
+
counter-reset:li-counter;
|
|
126
|
+
list-style-type:decimal;
|
|
127
|
+
padding-inline-start:1.5rem;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
ol>li{
|
|
131
|
+
counter-increment:li-counter;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
li::marker{
|
|
135
|
+
content: counter(li-counter, ".") ". ";
|
|
136
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
@use '../core/spacing' as sp;
|
|
2
|
+
@use '../core/namespace' as *;
|
|
3
|
+
@use "sass:meta";
|
|
4
|
+
|
|
5
|
+
// === Properties and directions ===
|
|
6
|
+
$properties: (
|
|
7
|
+
m: margin,
|
|
8
|
+
p: padding,
|
|
9
|
+
);
|
|
10
|
+
|
|
11
|
+
$directions: (
|
|
12
|
+
t: top,
|
|
13
|
+
r: right,
|
|
14
|
+
b: bottom,
|
|
15
|
+
l: left,
|
|
16
|
+
x: (left, right),
|
|
17
|
+
y: (top, bottom),
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
// === Directional classes ===
|
|
21
|
+
// Ex : .av-mt-sm / .av-px-md
|
|
22
|
+
@each $type, $property-value in $properties {
|
|
23
|
+
@each $direction-key, $direction-value in $directions {
|
|
24
|
+
@each $size, $value in sp.$spacing {
|
|
25
|
+
@if meta.type-of($direction-value) == 'list' {
|
|
26
|
+
@include ns("#{$type}#{$direction-key}-#{$size}") {
|
|
27
|
+
@each $d in $direction-value {
|
|
28
|
+
#{$property-value}-#{$d}: var(--spacing-#{$size}) !important;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
} @else {
|
|
32
|
+
@include ns("#{$type}#{$direction-key}-#{$size}") {
|
|
33
|
+
#{$property-value}-#{$direction-value}: var(--spacing-#{$size}) !important;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// === Global classes ===
|
|
41
|
+
// Ex : .av-m-sm / .av-p-md
|
|
42
|
+
@each $type, $property-value in $properties {
|
|
43
|
+
@each $size, $value in sp.$spacing {
|
|
44
|
+
@include ns("#{$type}-#{$size}") {
|
|
45
|
+
#{$property-value}: var(--spacing-#{$size}) !important;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
package/src/styles/buttons.scss
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
.fr-btn {
|
|
2
|
-
border-radius: 0.75rem !important;
|
|
3
|
-
}
|
|
4
|
-
.fr-btn.fr-btn--sm {
|
|
5
|
-
border-radius: 0.5rem !important;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.fr-btn.fr-btn--close:hover,
|
|
9
|
-
.fr-btn.fr-btn--menu:hover,
|
|
10
|
-
.fr-btn.fr-btn--search:hover,
|
|
11
|
-
.fr-btn.fr-translate__btn:hover {
|
|
12
|
-
background-color: var(--dark-background-primary1) !important;
|
|
13
|
-
color: var(--other-background-base) !important;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.fr-search-bar .fr-btn {
|
|
17
|
-
border-radius: 0 !important;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.fr-nav__btn:hover,
|
|
21
|
-
.fr-nav__link:hover {
|
|
22
|
-
background-color: var(--dark-background-primary1) !important;
|
|
23
|
-
color: var(--other-background-base) !important;
|
|
24
|
-
}
|
package/src/styles/spacing.scss
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--spacing-none: 0;
|
|
3
|
-
--spacing-xxxs: 0.125rem; /* 2px */
|
|
4
|
-
--spacing-xxs: 0.25rem; /* 4px */
|
|
5
|
-
--spacing-xs: 0.5rem; /* 8px */
|
|
6
|
-
--spacing-sm: 1rem; /* 16px */
|
|
7
|
-
--spacing-md: 1.5rem; /* 24px */
|
|
8
|
-
--spacing-lg: 2rem; /* 32px */
|
|
9
|
-
--spacing-xl: 2.5rem; /* 40px */
|
|
10
|
-
--spacing-2xl: 3rem; /* 48px */
|
|
11
|
-
--spacing-4xl: 4rem; /* 64px */
|
|
12
|
-
--spacing-5xl: 5rem; /* 80px */
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.line-break {
|
|
16
|
-
height: var(--spacing-xs);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.indented-list {
|
|
20
|
-
padding-left: var(--spacing-md);
|
|
21
|
-
}
|
|
File without changes
|