@digigov/css 0.37.0 → 0.38.1
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/base/index.css +2 -2
- package/dist/components.js +1 -1
- package/dist/digigov.css +3 -3
- package/package.json +1 -1
- package/src/components/modal.css +3 -6
- package/src/components/pagination.css +24 -10
package/package.json
CHANGED
package/src/components/modal.css
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
border border-solid border-base-500;
|
|
11
11
|
max-height:95vh;
|
|
12
12
|
}
|
|
13
|
-
.govgr-
|
|
13
|
+
.govgr-modal__container {
|
|
14
14
|
@apply grid p-10 gap-6 px-6 py-2;
|
|
15
15
|
}
|
|
16
16
|
.govgr-modal__open {
|
|
@@ -19,15 +19,12 @@
|
|
|
19
19
|
.govgr-modal__heading {
|
|
20
20
|
@apply md:text-2xl text-xl font-bold;
|
|
21
21
|
}
|
|
22
|
-
.govgr-
|
|
22
|
+
.govgr-modal__content {
|
|
23
23
|
@apply text-base lg:text-xl text-lg;
|
|
24
|
-
.govgr-field, .govgr-body {
|
|
25
|
-
@apply mb-0;
|
|
26
|
-
}
|
|
27
24
|
}
|
|
28
25
|
.govgr-modal__action {
|
|
29
26
|
@apply flex flex-wrap items-center gap-4;
|
|
30
27
|
.govgr-link, .govgr-btn {
|
|
31
28
|
@apply mb-0;
|
|
32
29
|
}
|
|
33
|
-
}
|
|
30
|
+
}
|
|
@@ -1,32 +1,46 @@
|
|
|
1
1
|
.govgr-pagination {
|
|
2
2
|
@apply flex flex-wrap items-center justify-items-center justify-between md:text-base text-sm;
|
|
3
|
+
.govgr-label {
|
|
4
|
+
@apply text-base-content md:text-base md:leading-normal text-sm flex-row items-center gap-2;
|
|
5
|
+
}
|
|
6
|
+
.govgr-select {
|
|
7
|
+
text-indent: 0px;
|
|
8
|
+
@apply flex text-base-content md:text-base md:leading-normal text-sm border;
|
|
9
|
+
&:focus {
|
|
10
|
+
-webkit-box-shadow: inset 0 0 0 1px;
|
|
11
|
+
box-shadow: inset 0 0 0 1px;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
.govgr-pagination__label {
|
|
16
|
+
@apply text-base-content md:text-base md:leading-normal text-sm;
|
|
3
17
|
}
|
|
4
18
|
.govgr-pagination__list {
|
|
5
19
|
@apply flex items-center;
|
|
6
20
|
}
|
|
7
|
-
.govgr-pagination__item--current, .govgr-pagination__item--dots {
|
|
8
|
-
@apply font-bold;
|
|
9
|
-
}
|
|
10
21
|
.govgr-pagination__item {
|
|
11
22
|
.govgr-link{
|
|
12
23
|
@apply flex items-center no-underline;
|
|
13
24
|
}
|
|
14
25
|
@apply inline-block p-2 m-0;
|
|
15
26
|
&:first-child {
|
|
16
|
-
@apply pl-0
|
|
27
|
+
@apply pl-0;
|
|
17
28
|
}
|
|
18
29
|
&:last-child {
|
|
19
|
-
@apply pr-0
|
|
30
|
+
@apply pr-0;
|
|
20
31
|
}
|
|
21
32
|
}
|
|
22
|
-
.govgr-
|
|
23
|
-
|
|
33
|
+
.govgr-pagination__item--current,
|
|
34
|
+
.govgr-pagination__item--dots {
|
|
35
|
+
@apply font-bold;
|
|
24
36
|
}
|
|
25
37
|
.govgr-pagination__item--inactive {
|
|
26
38
|
.govgr-link {
|
|
27
|
-
|
|
39
|
+
pointer-events: none;
|
|
40
|
+
@apply text-base-800;
|
|
28
41
|
}
|
|
29
|
-
.govgr-arrow--left,
|
|
30
|
-
|
|
42
|
+
.govgr-arrow--left,
|
|
43
|
+
.govgr-arrow--right {
|
|
44
|
+
fill: var(--color-base-800);
|
|
31
45
|
}
|
|
32
46
|
}
|