@digigov/css 2.0.0-rc.21 → 2.0.0-rc.23
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/components.js +1 -1
- package/dist/digigov.css +1 -1
- package/index.js +1 -1
- package/package.json +10 -10
- package/src/components/button.common.css +1 -1
- package/src/components/button.css +1 -1
- package/src/components/button.native.css +0 -1
- package/src/components/copy-to-clipboard.css +1 -1
- package/src/components/drawer.css +23 -3
- package/src/components/filter.css +71 -22
- package/src/components/kitchensink.css +2 -2
- package/src/components/loader.common.css +7 -0
- package/src/components/loader.css +3 -1
- package/src/components/loader.native.css +5 -0
- package/src/components/modal.common.css +2 -2
- package/src/components/modal.css +9 -9
- package/src/components/modal.native.css +3 -3
- package/src/components/pagination.css +19 -3
- package/src/components/stack.common.css +67 -0
- package/src/components/stack.css +23 -21
- package/src/components/stack.native.css +68 -0
- package/src/components/typography.css +5 -1
- package/src/index.native.css +2 -0
- package/tailwind.config.js +1 -0
|
@@ -129,6 +129,9 @@
|
|
|
129
129
|
&:last-child {
|
|
130
130
|
@apply mb-0;
|
|
131
131
|
}
|
|
132
|
+
> button.ds-link:only-child {
|
|
133
|
+
display: inline-flex;
|
|
134
|
+
}
|
|
132
135
|
}
|
|
133
136
|
}
|
|
134
137
|
.ds-list__item > .ds-list--bullet:nth-child(1) {
|
|
@@ -174,7 +177,7 @@
|
|
|
174
177
|
}
|
|
175
178
|
|
|
176
179
|
.ds-link {
|
|
177
|
-
@apply focus:text-link-active util-link util-link-text cursor-pointer;
|
|
180
|
+
@apply focus:text-link-active util-link util-link-text cursor-pointer text-left;
|
|
178
181
|
letter-spacing: var(--link-letter-spacing);
|
|
179
182
|
&:hover {
|
|
180
183
|
text-decoration-thickness: 2px;
|
|
@@ -278,6 +281,7 @@
|
|
|
278
281
|
}
|
|
279
282
|
}
|
|
280
283
|
button.ds-link {
|
|
284
|
+
@apply text-left;
|
|
281
285
|
.ds-svg-icon {
|
|
282
286
|
@apply ml-1;
|
|
283
287
|
}
|
package/src/index.native.css
CHANGED