@digigov/css 0.26.2 → 0.27.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/base.css +2 -2
- package/dist/components.css +1 -1
- package/dist/components.js +1 -1
- package/dist/digigov.css +3 -3
- package/package.json +1 -1
- package/src/components/autocomplete.css +109 -0
- package/src/components/copy-to-clipboard.css +2 -1
- package/src/components/drawer.css +6 -7
- package/src/components/dropdown.css +1 -1
- package/src/components/index.css +1 -0
- package/src/components/layout.css +1 -1
- package/src/components/modal.css +1 -1
- package/src/components/pagination.css +1 -1
- package/src/components/table.css +6 -3
- package/src/components/tabs.css +1 -0
- package/src/utilities/utilities.css +1 -1
- package/tailwind.config.js +3 -0
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
.govgr-drawer{
|
|
2
2
|
@apply border border-gray50 md:block bg-white p-4
|
|
3
|
-
h-full max-h-screen overflow-y-scroll w-4/5 min-h-screen
|
|
4
|
-
|
|
3
|
+
h-full max-h-screen overflow-y-scroll w-4/5 min-h-screen
|
|
4
|
+
fixed top-0 bottom-0 z-40 md:shadow-none shadow-thick
|
|
5
|
+
md:relative md:overflow-auto md:w-full;
|
|
5
6
|
}
|
|
6
7
|
.govgr-drawer--right {
|
|
7
|
-
@apply
|
|
8
|
-
md:relative md:overflow-auto md:w-full;
|
|
8
|
+
@apply right-0;
|
|
9
9
|
}
|
|
10
10
|
.govgr-drawer--left {
|
|
11
|
-
@apply
|
|
12
|
-
md:relative md:overflow-auto md:w-full;
|
|
11
|
+
@apply left-0 ;
|
|
13
12
|
}
|
|
14
13
|
.govgr-drawer--closed {
|
|
15
14
|
@apply hidden md:block;
|
|
@@ -36,7 +35,7 @@
|
|
|
36
35
|
}
|
|
37
36
|
}
|
|
38
37
|
.govgr-drawer__heading {
|
|
39
|
-
@apply p-
|
|
38
|
+
@apply p-0 flex justify-between align-baseline;
|
|
40
39
|
.govgr--drawer__close-icon, .govgr-heading-s, .govgr-heading-m, .govgr-heading-l, .govgr-heading-xl {
|
|
41
40
|
@apply m-0;
|
|
42
41
|
}
|
package/src/components/index.css
CHANGED
package/src/components/modal.css
CHANGED
package/src/components/table.css
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
@apply px-5 py-5;
|
|
4
4
|
}
|
|
5
5
|
.govgr-table-container {
|
|
6
|
-
@apply w-full
|
|
6
|
+
@apply w-full overflow-x-auto md:mb-10 mb-6;
|
|
7
7
|
.govgr-table {
|
|
8
8
|
@apply mb-0;
|
|
9
9
|
}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
@apply border border-gray50 p-2;
|
|
13
13
|
}
|
|
14
14
|
.govgr-table {
|
|
15
|
-
@apply w-full border-collapse;
|
|
15
|
+
@apply w-full border-collapse table;
|
|
16
16
|
@apply md:mb-10 mb-6 text-base-content md:text-lg text-base font-normal;
|
|
17
17
|
-webkit-font-smoothing: antialiased;
|
|
18
18
|
-moz-osx-font-smoothing: grayscale;
|
|
@@ -24,7 +24,10 @@
|
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
.govgr-table__body {
|
|
27
|
-
@apply
|
|
27
|
+
@apply static;
|
|
28
|
+
}
|
|
29
|
+
.govgr-table__row {
|
|
30
|
+
@apply bg-white;
|
|
28
31
|
}
|
|
29
32
|
.govgr-table__cell{
|
|
30
33
|
.govgr-btn {
|
package/src/components/tabs.css
CHANGED