@digigov/css 0.25.1 → 0.26.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/colors/color-values.js +5 -5
- package/dist/base/index.css +3 -3
- package/dist/base.css +3 -3
- package/dist/base.js +1 -1
- package/dist/components.css +1 -1
- package/dist/components.js +1 -1
- package/dist/digigov.css +3 -3
- package/dist/utilities/index.css +1 -1
- package/dist/utilities.css +1 -1
- package/dist/utilities.js +1 -1
- package/package.json +2 -2
- package/src/components/button.css +3 -3
- package/src/components/filter.css +20 -1
- package/src/components/footer.css +1 -1
- package/src/components/typography.css +3 -3
- package/src/utilities/index.css +310 -7
- package/src/utilities/utilities.css +297 -6
|
@@ -7,6 +7,23 @@
|
|
|
7
7
|
@apply w-full;
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
|
+
.govgr-filter--horizontal {
|
|
11
|
+
@apply border border-gray50 md:block bg-white
|
|
12
|
+
fixed top-0 right-0 bottom-0 overflow-y-scroll z-40 w-4/5
|
|
13
|
+
md:relative md:overflow-auto md:w-full ;
|
|
14
|
+
box-shadow: 0 0 30px var(--color-shadow600);
|
|
15
|
+
@apply md:relative md:overflow-auto md:w-full md:shadow-none;
|
|
16
|
+
}
|
|
17
|
+
.govgr-filter__options--horizontal {
|
|
18
|
+
@apply md:flex md:flex-row md:flex-wrap;
|
|
19
|
+
align-items: flex-end;
|
|
20
|
+
.govgr-field {
|
|
21
|
+
@apply mb-0 md:mr-4;
|
|
22
|
+
}
|
|
23
|
+
.govgr-label, .govgr-btn {
|
|
24
|
+
@apply mb-0 mt-4;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
10
27
|
.govgr-filter--closed {
|
|
11
28
|
@apply hidden md:block;
|
|
12
29
|
}
|
|
@@ -28,7 +45,6 @@
|
|
|
28
45
|
}
|
|
29
46
|
}
|
|
30
47
|
}
|
|
31
|
-
|
|
32
48
|
.govgr-filter__heading, .govgr-filter__selected, .govgr-filter__options {
|
|
33
49
|
@apply p-4;
|
|
34
50
|
}
|
|
@@ -52,6 +68,9 @@
|
|
|
52
68
|
.govgr-chip--heading {
|
|
53
69
|
@apply font-bold md:text-base text-sm pb-4;
|
|
54
70
|
}
|
|
71
|
+
.govgr-chip--horizontal {
|
|
72
|
+
@apply md:flex md:flex-row md:flex-wrap;
|
|
73
|
+
}
|
|
55
74
|
.govgr-chips {
|
|
56
75
|
@apply flex flex-wrap;
|
|
57
76
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.govgr-footer {
|
|
2
|
-
@apply border-0 border-solid font-normal text-base py-4 md:py-8 border-t-4 border-secondary600 text-
|
|
2
|
+
@apply border-0 border-solid font-normal text-base py-4 md:py-8 border-t-4 border-secondary600 text-gray600 bg-gray100 w-full;
|
|
3
3
|
}
|
|
4
4
|
.govgr-footer__meta {
|
|
5
5
|
@apply w-full flex flex-1 flex-wrap md:flex-nowrap items-end justify-between box-border;
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
.govgr-hint-s {
|
|
77
77
|
@apply mb-4 lg:text-base text-sm text-base300;
|
|
78
78
|
}
|
|
79
|
-
.govgr-background-dark {
|
|
79
|
+
.govgr-background-dark, .govgr-masthead {
|
|
80
80
|
.govgr-hint {
|
|
81
81
|
@apply opacity-70 text-white;
|
|
82
82
|
}
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
.govgr-link--no-underline {
|
|
111
111
|
@apply no-underline hover:underline;
|
|
112
112
|
}
|
|
113
|
-
.govgr-background-dark {
|
|
113
|
+
.govgr-background-dark, .govgr-masthead {
|
|
114
114
|
.govgr-link {
|
|
115
115
|
@apply text-white hover:text-white focus:text-white ;
|
|
116
116
|
&:hover {
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
@apply w-4 h-4 inline-block mr-2;
|
|
142
142
|
}
|
|
143
143
|
}
|
|
144
|
-
.govgr-background-dark {
|
|
144
|
+
.govgr-background-dark, .govgr-masthead {
|
|
145
145
|
.govgr-back-link {
|
|
146
146
|
@apply text-white;
|
|
147
147
|
}
|
package/src/utilities/index.css
CHANGED
|
@@ -1,14 +1,305 @@
|
|
|
1
|
-
.govgr-
|
|
2
|
-
@apply
|
|
1
|
+
.govgr-m-0 {
|
|
2
|
+
@apply m-0 !important;
|
|
3
|
+
}
|
|
4
|
+
.govgr-m-1 {
|
|
5
|
+
@apply m-1 !important;
|
|
3
6
|
}
|
|
4
|
-
.govgr-
|
|
5
|
-
@apply
|
|
7
|
+
.govgr-m-2 {
|
|
8
|
+
@apply m-2 !important;
|
|
9
|
+
}
|
|
10
|
+
.govgr-m-3 {
|
|
11
|
+
@apply m-2 md:m-3 !important;
|
|
12
|
+
}
|
|
13
|
+
.govgr-m-4 {
|
|
14
|
+
@apply m-3 md:m-4 !important;
|
|
15
|
+
}
|
|
16
|
+
.govgr-m-5 {
|
|
17
|
+
@apply m-4 md:m-5 !important;
|
|
18
|
+
}
|
|
19
|
+
.govgr-m-6 {
|
|
20
|
+
@apply m-5 md:m-6 !important;
|
|
21
|
+
}
|
|
22
|
+
.govgr-m-7 {
|
|
23
|
+
@apply m-6 md:m-8 !important;
|
|
24
|
+
}
|
|
25
|
+
.govgr-m-8 {
|
|
26
|
+
@apply m-8 md:m-10 !important;
|
|
27
|
+
}
|
|
28
|
+
.govgr-m-9 {
|
|
29
|
+
@apply m-8 md:m-12 !important;
|
|
30
|
+
}
|
|
31
|
+
.govgr-mt-0 {
|
|
32
|
+
@apply mt-0 !important;
|
|
33
|
+
}
|
|
34
|
+
.govgr-mt-1 {
|
|
35
|
+
@apply mt-1 !important;
|
|
36
|
+
}
|
|
37
|
+
.govgr-mt-2 {
|
|
38
|
+
@apply mt-2 !important;
|
|
39
|
+
}
|
|
40
|
+
.govgr-mt-3 {
|
|
41
|
+
@apply mt-2 md:mt-3 !important;
|
|
42
|
+
}
|
|
43
|
+
.govgr-mt-4 {
|
|
44
|
+
@apply mt-3 md:mt-4 !important;
|
|
45
|
+
}
|
|
46
|
+
.govgr-mt-5 {
|
|
47
|
+
@apply mt-4 md:mt-5 !important;
|
|
48
|
+
}
|
|
49
|
+
.govgr-mt-6 {
|
|
50
|
+
@apply mt-5 md:mt-6 !important;
|
|
51
|
+
}
|
|
52
|
+
.govgr-mt-7 {
|
|
53
|
+
@apply mt-6 md:mt-8 !important;
|
|
54
|
+
}
|
|
55
|
+
.govgr-mt-8 {
|
|
56
|
+
@apply mt-8 md:mt-10 !important;
|
|
57
|
+
}
|
|
58
|
+
.govgr-mt-9 {
|
|
59
|
+
@apply mt-8 md:mt-12 !important;
|
|
60
|
+
}
|
|
61
|
+
.govgr-mb-0 {
|
|
62
|
+
@apply mb-0 !important;
|
|
63
|
+
}
|
|
64
|
+
.govgr-mb-1 {
|
|
65
|
+
@apply mb-1 !important;
|
|
66
|
+
}
|
|
67
|
+
.govgr-mb-2 {
|
|
68
|
+
@apply mb-2 !important;
|
|
69
|
+
}
|
|
70
|
+
.govgr-mb-3 {
|
|
71
|
+
@apply mb-2 md:mb-3 !important;
|
|
72
|
+
}
|
|
73
|
+
.govgr-mb-4 {
|
|
74
|
+
@apply mb-3 md:mb-4 !important;
|
|
75
|
+
}
|
|
76
|
+
.govgr-mb-5 {
|
|
77
|
+
@apply mb-4 md:mb-5 !important;
|
|
78
|
+
}
|
|
79
|
+
.govgr-mb-6 {
|
|
80
|
+
@apply mb-5 md:mb-6 !important;
|
|
81
|
+
}
|
|
82
|
+
.govgr-mb-7 {
|
|
83
|
+
@apply mb-6 md:mb-8 !important;
|
|
84
|
+
}
|
|
85
|
+
.govgr-mb-8 {
|
|
86
|
+
@apply mb-8 md:mb-10 !important;
|
|
87
|
+
}
|
|
88
|
+
.govgr-mb-9 {
|
|
89
|
+
@apply mb-8 md:mb-12 !important;
|
|
90
|
+
}
|
|
91
|
+
.govgr-ml-0 {
|
|
92
|
+
@apply ml-0 !important;
|
|
93
|
+
}
|
|
94
|
+
.govgr-ml-1 {
|
|
95
|
+
@apply ml-1 !important;
|
|
96
|
+
}
|
|
97
|
+
.govgr-ml-2 {
|
|
98
|
+
@apply ml-2 !important;
|
|
99
|
+
}
|
|
100
|
+
.govgr-ml-3 {
|
|
101
|
+
@apply ml-2 md:ml-3 !important;
|
|
102
|
+
}
|
|
103
|
+
.govgr-ml-4 {
|
|
104
|
+
@apply ml-3 md:ml-4 !important;
|
|
105
|
+
}
|
|
106
|
+
.govgr-ml-5 {
|
|
107
|
+
@apply ml-4 md:ml-5 !important;
|
|
108
|
+
}
|
|
109
|
+
.govgr-ml-6 {
|
|
110
|
+
@apply ml-5 md:ml-6 !important;
|
|
111
|
+
}
|
|
112
|
+
.govgr-ml-7 {
|
|
113
|
+
@apply ml-6 md:ml-8 !important;
|
|
114
|
+
}
|
|
115
|
+
.govgr-ml-8 {
|
|
116
|
+
@apply ml-8 md:ml-10 !important;
|
|
117
|
+
}
|
|
118
|
+
.govgr-ml-9 {
|
|
119
|
+
@apply ml-8 md:ml-12 !important;
|
|
120
|
+
}
|
|
121
|
+
.govgr-mr-0 {
|
|
122
|
+
@apply mr-0 !important;
|
|
123
|
+
}
|
|
124
|
+
.govgr-mr-1 {
|
|
125
|
+
@apply mr-1 !important;
|
|
126
|
+
}
|
|
127
|
+
.govgr-mr-2 {
|
|
128
|
+
@apply mr-2 !important;
|
|
129
|
+
}
|
|
130
|
+
.govgr-mr-3 {
|
|
131
|
+
@apply mr-2 md:mr-3 !important;
|
|
132
|
+
}
|
|
133
|
+
.govgr-mr-4 {
|
|
134
|
+
@apply mr-3 md:mr-4 !important;
|
|
135
|
+
}
|
|
136
|
+
.govgr-mr-5 {
|
|
137
|
+
@apply mr-4 md:mr-5 !important;
|
|
138
|
+
}
|
|
139
|
+
.govgr-mr-6 {
|
|
140
|
+
@apply mr-5 md:mr-6 !important;
|
|
141
|
+
}
|
|
142
|
+
.govgr-mr-7 {
|
|
143
|
+
@apply mr-6 md:mr-8 !important;
|
|
144
|
+
}
|
|
145
|
+
.govgr-mr-8 {
|
|
146
|
+
@apply mr-8 md:mr-10 !important;
|
|
147
|
+
}
|
|
148
|
+
.govgr-mr-9 {
|
|
149
|
+
@apply mr-8 md:mr-12 !important;
|
|
150
|
+
}
|
|
151
|
+
.govgr-p-0 {
|
|
152
|
+
@apply p-0 !important;
|
|
153
|
+
}
|
|
154
|
+
.govgr-p-1 {
|
|
155
|
+
@apply p-1 !important;
|
|
156
|
+
}
|
|
157
|
+
.govgr-p-2 {
|
|
158
|
+
@apply p-2 !important;
|
|
6
159
|
}
|
|
7
|
-
.govgr-
|
|
8
|
-
@apply
|
|
160
|
+
.govgr-p-3 {
|
|
161
|
+
@apply p-2 md:p-3 !important;
|
|
162
|
+
}
|
|
163
|
+
.govgr-p-4 {
|
|
164
|
+
@apply p-3 md:p-4 !important;
|
|
165
|
+
}
|
|
166
|
+
.govgr-p-5 {
|
|
167
|
+
@apply p-4 md:p-5 !important;
|
|
168
|
+
}
|
|
169
|
+
.govgr-p-6 {
|
|
170
|
+
@apply p-5 md:p-6 !important;
|
|
171
|
+
}
|
|
172
|
+
.govgr-p-7 {
|
|
173
|
+
@apply p-6 md:p-8 !important;
|
|
174
|
+
}
|
|
175
|
+
.govgr-p-8 {
|
|
176
|
+
@apply p-8 md:p-10 !important;
|
|
177
|
+
}
|
|
178
|
+
.govgr-p-9 {
|
|
179
|
+
@apply p-8 md:p-12 !important;
|
|
180
|
+
}
|
|
181
|
+
.govgr-pt-0 {
|
|
182
|
+
@apply pt-0 !important;
|
|
183
|
+
}
|
|
184
|
+
.govgr-pt-1 {
|
|
185
|
+
@apply pt-1 !important;
|
|
186
|
+
}
|
|
187
|
+
.govgr-pt-2 {
|
|
188
|
+
@apply pt-2 !important;
|
|
189
|
+
}
|
|
190
|
+
.govgr-pt-3 {
|
|
191
|
+
@apply pt-2 md:pt-3 !important;
|
|
192
|
+
}
|
|
193
|
+
.govgr-pt-4 {
|
|
194
|
+
@apply pt-3 md:pt-4 !important;
|
|
195
|
+
}
|
|
196
|
+
.govgr-pt-5 {
|
|
197
|
+
@apply pt-4 md:pt-5 !important;
|
|
198
|
+
}
|
|
199
|
+
.govgr-pt-6 {
|
|
200
|
+
@apply pt-5 md:pt-6 !important;
|
|
201
|
+
}
|
|
202
|
+
.govgr-pt-7 {
|
|
203
|
+
@apply pt-6 md:pt-8 !important;
|
|
204
|
+
}
|
|
205
|
+
.govgr-pt-8 {
|
|
206
|
+
@apply pt-8 md:pt-10 !important;
|
|
207
|
+
}
|
|
208
|
+
.govgr-pt-9 {
|
|
209
|
+
@apply pt-8 md:pt-12 !important;
|
|
210
|
+
}
|
|
211
|
+
.govgr-pb-0 {
|
|
212
|
+
@apply pb-0 !important;
|
|
213
|
+
}
|
|
214
|
+
.govgr-pb-1 {
|
|
215
|
+
@apply pb-1 !important;
|
|
216
|
+
}
|
|
217
|
+
.govgr-pb-2 {
|
|
218
|
+
@apply pb-2 !important;
|
|
219
|
+
}
|
|
220
|
+
.govgr-pb-3 {
|
|
221
|
+
@apply pb-2 md:pb-3 !important;
|
|
222
|
+
}
|
|
223
|
+
.govgr-pb-4 {
|
|
224
|
+
@apply pb-3 md:pb-4 !important;
|
|
225
|
+
}
|
|
226
|
+
.govgr-pb-5 {
|
|
227
|
+
@apply pb-4 md:pb-5 !important;
|
|
228
|
+
}
|
|
229
|
+
.govgr-pb-6 {
|
|
230
|
+
@apply pb-5 md:pb-6 !important;
|
|
231
|
+
}
|
|
232
|
+
.govgr-pb-7 {
|
|
233
|
+
@apply pb-6 md:pb-8 !important;
|
|
234
|
+
}
|
|
235
|
+
.govgr-pb-8 {
|
|
236
|
+
@apply pb-8 md:pb-10 !important;
|
|
237
|
+
}
|
|
238
|
+
.govgr-pb-9 {
|
|
239
|
+
@apply pb-8 md:pb-12 !important;
|
|
240
|
+
}
|
|
241
|
+
.govgr-pl-0 {
|
|
242
|
+
@apply pl-0 !important;
|
|
243
|
+
}
|
|
244
|
+
.govgr-pl-1 {
|
|
245
|
+
@apply pl-1 !important;
|
|
246
|
+
}
|
|
247
|
+
.govgr-pl-2 {
|
|
248
|
+
@apply pl-2 !important;
|
|
249
|
+
}
|
|
250
|
+
.govgr-pl-3 {
|
|
251
|
+
@apply pl-2 md:pl-3 !important;
|
|
252
|
+
}
|
|
253
|
+
.govgr-pl-4 {
|
|
254
|
+
@apply pl-3 md:pl-4 !important;
|
|
255
|
+
}
|
|
256
|
+
.govgr-pl-5 {
|
|
257
|
+
@apply pl-4 md:pl-5 !important;
|
|
258
|
+
}
|
|
259
|
+
.govgr-pl-6 {
|
|
260
|
+
@apply pl-5 md:pl-6 !important;
|
|
261
|
+
}
|
|
262
|
+
.govgr-pl-7 {
|
|
263
|
+
@apply pl-6 md:pl-8 !important;
|
|
264
|
+
}
|
|
265
|
+
.govgr-pl-8 {
|
|
266
|
+
@apply pl-8 md:pl-10 !important;
|
|
267
|
+
}
|
|
268
|
+
.govgr-pl-9 {
|
|
269
|
+
@apply pl-8 md:pl-12 !important;
|
|
270
|
+
}
|
|
271
|
+
.govgr-pr-0 {
|
|
272
|
+
@apply pr-0 !important;
|
|
273
|
+
}
|
|
274
|
+
.govgr-pr-1 {
|
|
275
|
+
@apply pr-1 !important;
|
|
276
|
+
}
|
|
277
|
+
.govgr-pr-2 {
|
|
278
|
+
@apply pr-2 !important;
|
|
279
|
+
}
|
|
280
|
+
.govgr-pr-3 {
|
|
281
|
+
@apply pr-2 md:pr-3 !important;
|
|
282
|
+
}
|
|
283
|
+
.govgr-pr-4 {
|
|
284
|
+
@apply pr-3 md:pr-4 !important;
|
|
285
|
+
}
|
|
286
|
+
.govgr-pr-5 {
|
|
287
|
+
@apply pr-4 md:pr-5 !important;
|
|
288
|
+
}
|
|
289
|
+
.govgr-pr-6 {
|
|
290
|
+
@apply pr-5 md:pr-6 !important;
|
|
291
|
+
}
|
|
292
|
+
.govgr-pr-7 {
|
|
293
|
+
@apply pr-6 md:pr-8 !important;
|
|
294
|
+
}
|
|
295
|
+
.govgr-pr-8 {
|
|
296
|
+
@apply pr-8 md:pr-10 !important;
|
|
297
|
+
}
|
|
298
|
+
.govgr-pr-9 {
|
|
299
|
+
@apply pr-8 md:pr-12 !important;
|
|
9
300
|
}
|
|
10
301
|
.govgr-grid {
|
|
11
|
-
@apply grid grid-cols-12;
|
|
302
|
+
@apply grid md:grid-cols-12 grid-cols-1;
|
|
12
303
|
}
|
|
13
304
|
.govgr-grid-inline {
|
|
14
305
|
@apply inline-grid;
|
|
@@ -25,6 +316,18 @@
|
|
|
25
316
|
.govgr-grid__gap-4 {
|
|
26
317
|
@apply gap-4;
|
|
27
318
|
}
|
|
319
|
+
.govgr-grid__gap-6 {
|
|
320
|
+
@apply gap-6;
|
|
321
|
+
}
|
|
322
|
+
.govgr-grid__gap-8 {
|
|
323
|
+
@apply gap-8;
|
|
324
|
+
}
|
|
325
|
+
.govgr-grid__gap-10 {
|
|
326
|
+
@apply gap-10;
|
|
327
|
+
}
|
|
328
|
+
.govgr-grid__gap-12 {
|
|
329
|
+
@apply gap-12;
|
|
330
|
+
}
|
|
28
331
|
.govgr-grid__col-auto {
|
|
29
332
|
@apply col-auto;
|
|
30
333
|
}
|
|
@@ -1,13 +1,304 @@
|
|
|
1
1
|
@tailwind utilities;
|
|
2
2
|
@layer utilities {
|
|
3
|
-
.govgr-
|
|
4
|
-
@apply
|
|
3
|
+
.govgr-m-0 {
|
|
4
|
+
@apply m-0 !important;
|
|
5
|
+
}
|
|
6
|
+
.govgr-m-1 {
|
|
7
|
+
@apply m-1 !important;
|
|
5
8
|
}
|
|
6
|
-
.govgr-
|
|
7
|
-
@apply
|
|
9
|
+
.govgr-m-2 {
|
|
10
|
+
@apply m-2 !important;
|
|
11
|
+
}
|
|
12
|
+
.govgr-m-3 {
|
|
13
|
+
@apply m-2 md:m-3 !important;
|
|
14
|
+
}
|
|
15
|
+
.govgr-m-4 {
|
|
16
|
+
@apply m-3 md:m-4 !important;
|
|
17
|
+
}
|
|
18
|
+
.govgr-m-5 {
|
|
19
|
+
@apply m-4 md:m-5 !important;
|
|
20
|
+
}
|
|
21
|
+
.govgr-m-6 {
|
|
22
|
+
@apply m-5 md:m-6 !important;
|
|
23
|
+
}
|
|
24
|
+
.govgr-m-7 {
|
|
25
|
+
@apply m-6 md:m-8 !important;
|
|
26
|
+
}
|
|
27
|
+
.govgr-m-8 {
|
|
28
|
+
@apply m-8 md:m-10 !important;
|
|
29
|
+
}
|
|
30
|
+
.govgr-m-9 {
|
|
31
|
+
@apply m-8 md:m-12 !important;
|
|
32
|
+
}
|
|
33
|
+
.govgr-mt-0 {
|
|
34
|
+
@apply mt-0 !important;
|
|
35
|
+
}
|
|
36
|
+
.govgr-mt-1 {
|
|
37
|
+
@apply mt-1 !important;
|
|
38
|
+
}
|
|
39
|
+
.govgr-mt-2 {
|
|
40
|
+
@apply mt-2 !important;
|
|
41
|
+
}
|
|
42
|
+
.govgr-mt-3 {
|
|
43
|
+
@apply mt-2 md:mt-3 !important;
|
|
44
|
+
}
|
|
45
|
+
.govgr-mt-4 {
|
|
46
|
+
@apply mt-3 md:mt-4 !important;
|
|
47
|
+
}
|
|
48
|
+
.govgr-mt-5 {
|
|
49
|
+
@apply mt-4 md:mt-5 !important;
|
|
50
|
+
}
|
|
51
|
+
.govgr-mt-6 {
|
|
52
|
+
@apply mt-5 md:mt-6 !important;
|
|
53
|
+
}
|
|
54
|
+
.govgr-mt-7 {
|
|
55
|
+
@apply mt-6 md:mt-8 !important;
|
|
56
|
+
}
|
|
57
|
+
.govgr-mt-8 {
|
|
58
|
+
@apply mt-8 md:mt-10 !important;
|
|
59
|
+
}
|
|
60
|
+
.govgr-mt-9 {
|
|
61
|
+
@apply mt-8 md:mt-12 !important;
|
|
62
|
+
}
|
|
63
|
+
.govgr-mb-0 {
|
|
64
|
+
@apply mb-0 !important;
|
|
65
|
+
}
|
|
66
|
+
.govgr-mb-1 {
|
|
67
|
+
@apply mb-1 !important;
|
|
68
|
+
}
|
|
69
|
+
.govgr-mb-2 {
|
|
70
|
+
@apply mb-2 !important;
|
|
71
|
+
}
|
|
72
|
+
.govgr-mb-3 {
|
|
73
|
+
@apply mb-2 md:mb-3 !important;
|
|
74
|
+
}
|
|
75
|
+
.govgr-mb-4 {
|
|
76
|
+
@apply mb-3 md:mb-4 !important;
|
|
77
|
+
}
|
|
78
|
+
.govgr-mb-5 {
|
|
79
|
+
@apply mb-4 md:mb-5 !important;
|
|
80
|
+
}
|
|
81
|
+
.govgr-mb-6 {
|
|
82
|
+
@apply mb-5 md:mb-6 !important;
|
|
83
|
+
}
|
|
84
|
+
.govgr-mb-7 {
|
|
85
|
+
@apply mb-6 md:mb-8 !important;
|
|
86
|
+
}
|
|
87
|
+
.govgr-mb-8 {
|
|
88
|
+
@apply mb-8 md:mb-10 !important;
|
|
89
|
+
}
|
|
90
|
+
.govgr-mb-9 {
|
|
91
|
+
@apply mb-8 md:mb-12 !important;
|
|
92
|
+
}
|
|
93
|
+
.govgr-ml-0 {
|
|
94
|
+
@apply ml-0 !important;
|
|
95
|
+
}
|
|
96
|
+
.govgr-ml-1 {
|
|
97
|
+
@apply ml-1 !important;
|
|
98
|
+
}
|
|
99
|
+
.govgr-ml-2 {
|
|
100
|
+
@apply ml-2 !important;
|
|
101
|
+
}
|
|
102
|
+
.govgr-ml-3 {
|
|
103
|
+
@apply ml-2 md:ml-3 !important;
|
|
104
|
+
}
|
|
105
|
+
.govgr-ml-4 {
|
|
106
|
+
@apply ml-3 md:ml-4 !important;
|
|
107
|
+
}
|
|
108
|
+
.govgr-ml-5 {
|
|
109
|
+
@apply ml-4 md:ml-5 !important;
|
|
110
|
+
}
|
|
111
|
+
.govgr-ml-6 {
|
|
112
|
+
@apply ml-5 md:ml-6 !important;
|
|
113
|
+
}
|
|
114
|
+
.govgr-ml-7 {
|
|
115
|
+
@apply ml-6 md:ml-8 !important;
|
|
116
|
+
}
|
|
117
|
+
.govgr-ml-8 {
|
|
118
|
+
@apply ml-8 md:ml-10 !important;
|
|
119
|
+
}
|
|
120
|
+
.govgr-ml-9 {
|
|
121
|
+
@apply ml-8 md:ml-12 !important;
|
|
122
|
+
}
|
|
123
|
+
.govgr-mr-0 {
|
|
124
|
+
@apply mr-0 !important;
|
|
125
|
+
}
|
|
126
|
+
.govgr-mr-1 {
|
|
127
|
+
@apply mr-1 !important;
|
|
128
|
+
}
|
|
129
|
+
.govgr-mr-2 {
|
|
130
|
+
@apply mr-2 !important;
|
|
131
|
+
}
|
|
132
|
+
.govgr-mr-3 {
|
|
133
|
+
@apply mr-2 md:mr-3 !important;
|
|
134
|
+
}
|
|
135
|
+
.govgr-mr-4 {
|
|
136
|
+
@apply mr-3 md:mr-4 !important;
|
|
137
|
+
}
|
|
138
|
+
.govgr-mr-5 {
|
|
139
|
+
@apply mr-4 md:mr-5 !important;
|
|
140
|
+
}
|
|
141
|
+
.govgr-mr-6 {
|
|
142
|
+
@apply mr-5 md:mr-6 !important;
|
|
143
|
+
}
|
|
144
|
+
.govgr-mr-7 {
|
|
145
|
+
@apply mr-6 md:mr-8 !important;
|
|
146
|
+
}
|
|
147
|
+
.govgr-mr-8 {
|
|
148
|
+
@apply mr-8 md:mr-10 !important;
|
|
149
|
+
}
|
|
150
|
+
.govgr-mr-9 {
|
|
151
|
+
@apply mr-8 md:mr-12 !important;
|
|
152
|
+
}
|
|
153
|
+
.govgr-p-0 {
|
|
154
|
+
@apply p-0 !important;
|
|
155
|
+
}
|
|
156
|
+
.govgr-p-1 {
|
|
157
|
+
@apply p-1 !important;
|
|
158
|
+
}
|
|
159
|
+
.govgr-p-2 {
|
|
160
|
+
@apply p-2 !important;
|
|
161
|
+
}
|
|
162
|
+
.govgr-p-3 {
|
|
163
|
+
@apply p-2 md:p-3 !important;
|
|
164
|
+
}
|
|
165
|
+
.govgr-p-4 {
|
|
166
|
+
@apply p-3 md:p-4 !important;
|
|
167
|
+
}
|
|
168
|
+
.govgr-p-5 {
|
|
169
|
+
@apply p-4 md:p-5 !important;
|
|
170
|
+
}
|
|
171
|
+
.govgr-p-6 {
|
|
172
|
+
@apply p-5 md:p-6 !important;
|
|
173
|
+
}
|
|
174
|
+
.govgr-p-7 {
|
|
175
|
+
@apply p-6 md:p-8 !important;
|
|
176
|
+
}
|
|
177
|
+
.govgr-p-8 {
|
|
178
|
+
@apply p-8 md:p-10 !important;
|
|
179
|
+
}
|
|
180
|
+
.govgr-p-9 {
|
|
181
|
+
@apply p-8 md:p-12 !important;
|
|
182
|
+
}
|
|
183
|
+
.govgr-pt-0 {
|
|
184
|
+
@apply pt-0 !important;
|
|
185
|
+
}
|
|
186
|
+
.govgr-pt-1 {
|
|
187
|
+
@apply pt-1 !important;
|
|
188
|
+
}
|
|
189
|
+
.govgr-pt-2 {
|
|
190
|
+
@apply pt-2 !important;
|
|
191
|
+
}
|
|
192
|
+
.govgr-pt-3 {
|
|
193
|
+
@apply pt-2 md:pt-3 !important;
|
|
194
|
+
}
|
|
195
|
+
.govgr-pt-4 {
|
|
196
|
+
@apply pt-3 md:pt-4 !important;
|
|
197
|
+
}
|
|
198
|
+
.govgr-pt-5 {
|
|
199
|
+
@apply pt-4 md:pt-5 !important;
|
|
200
|
+
}
|
|
201
|
+
.govgr-pt-6 {
|
|
202
|
+
@apply pt-5 md:pt-6 !important;
|
|
203
|
+
}
|
|
204
|
+
.govgr-pt-7 {
|
|
205
|
+
@apply pt-6 md:pt-8 !important;
|
|
206
|
+
}
|
|
207
|
+
.govgr-pt-8 {
|
|
208
|
+
@apply pt-8 md:pt-10 !important;
|
|
209
|
+
}
|
|
210
|
+
.govgr-pt-9 {
|
|
211
|
+
@apply pt-8 md:pt-12 !important;
|
|
212
|
+
}
|
|
213
|
+
.govgr-pb-0 {
|
|
214
|
+
@apply pb-0 !important;
|
|
215
|
+
}
|
|
216
|
+
.govgr-pb-1 {
|
|
217
|
+
@apply pb-1 !important;
|
|
218
|
+
}
|
|
219
|
+
.govgr-pb-2 {
|
|
220
|
+
@apply pb-2 !important;
|
|
221
|
+
}
|
|
222
|
+
.govgr-pb-3 {
|
|
223
|
+
@apply pb-2 md:pb-3 !important;
|
|
224
|
+
}
|
|
225
|
+
.govgr-pb-4 {
|
|
226
|
+
@apply pb-3 md:pb-4 !important;
|
|
227
|
+
}
|
|
228
|
+
.govgr-pb-5 {
|
|
229
|
+
@apply pb-4 md:pb-5 !important;
|
|
230
|
+
}
|
|
231
|
+
.govgr-pb-6 {
|
|
232
|
+
@apply pb-5 md:pb-6 !important;
|
|
233
|
+
}
|
|
234
|
+
.govgr-pb-7 {
|
|
235
|
+
@apply pb-6 md:pb-8 !important;
|
|
236
|
+
}
|
|
237
|
+
.govgr-pb-8 {
|
|
238
|
+
@apply pb-8 md:pb-10 !important;
|
|
239
|
+
}
|
|
240
|
+
.govgr-pb-9 {
|
|
241
|
+
@apply pb-8 md:pb-12 !important;
|
|
242
|
+
}
|
|
243
|
+
.govgr-pl-0 {
|
|
244
|
+
@apply pl-0 !important;
|
|
245
|
+
}
|
|
246
|
+
.govgr-pl-1 {
|
|
247
|
+
@apply pl-1 !important;
|
|
248
|
+
}
|
|
249
|
+
.govgr-pl-2 {
|
|
250
|
+
@apply pl-2 !important;
|
|
251
|
+
}
|
|
252
|
+
.govgr-pl-3 {
|
|
253
|
+
@apply pl-2 md:pl-3 !important;
|
|
254
|
+
}
|
|
255
|
+
.govgr-pl-4 {
|
|
256
|
+
@apply pl-3 md:pl-4 !important;
|
|
257
|
+
}
|
|
258
|
+
.govgr-pl-5 {
|
|
259
|
+
@apply pl-4 md:pl-5 !important;
|
|
260
|
+
}
|
|
261
|
+
.govgr-pl-6 {
|
|
262
|
+
@apply pl-5 md:pl-6 !important;
|
|
263
|
+
}
|
|
264
|
+
.govgr-pl-7 {
|
|
265
|
+
@apply pl-6 md:pl-8 !important;
|
|
266
|
+
}
|
|
267
|
+
.govgr-pl-8 {
|
|
268
|
+
@apply pl-8 md:pl-10 !important;
|
|
269
|
+
}
|
|
270
|
+
.govgr-pl-9 {
|
|
271
|
+
@apply pl-8 md:pl-12 !important;
|
|
272
|
+
}
|
|
273
|
+
.govgr-pr-0 {
|
|
274
|
+
@apply pr-0 !important;
|
|
275
|
+
}
|
|
276
|
+
.govgr-pr-1 {
|
|
277
|
+
@apply pr-1 !important;
|
|
278
|
+
}
|
|
279
|
+
.govgr-pr-2 {
|
|
280
|
+
@apply pr-2 !important;
|
|
281
|
+
}
|
|
282
|
+
.govgr-pr-3 {
|
|
283
|
+
@apply pr-2 md:pr-3 !important;
|
|
284
|
+
}
|
|
285
|
+
.govgr-pr-4 {
|
|
286
|
+
@apply pr-3 md:pr-4 !important;
|
|
287
|
+
}
|
|
288
|
+
.govgr-pr-5 {
|
|
289
|
+
@apply pr-4 md:pr-5 !important;
|
|
290
|
+
}
|
|
291
|
+
.govgr-pr-6 {
|
|
292
|
+
@apply pr-5 md:pr-6 !important;
|
|
293
|
+
}
|
|
294
|
+
.govgr-pr-7 {
|
|
295
|
+
@apply pr-6 md:pr-8 !important;
|
|
296
|
+
}
|
|
297
|
+
.govgr-pr-8 {
|
|
298
|
+
@apply pr-8 md:pr-10 !important;
|
|
8
299
|
}
|
|
9
|
-
.govgr-
|
|
10
|
-
@apply
|
|
300
|
+
.govgr-pr-9 {
|
|
301
|
+
@apply pr-8 md:pr-12 !important;
|
|
11
302
|
}
|
|
12
303
|
.govgr-grid {
|
|
13
304
|
@apply grid md:grid-cols-12 grid-cols-1;
|