hds-web 0.1.9 → 0.1.10
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/index.css +2 -2
- package/dist/index.es.css +2 -2
- package/dist/index.es.js +3 -3
- package/dist/index.js +3 -3
- package/package.json +2 -1
- package/src/HDS/components/Buttons/button.js +53 -26
- package/src/HDS/components/Tables/tableA.js +3 -2
- package/src/HDS/foundation/ColorPalette/color.js +484 -289
- package/src/index.css +3 -15
- package/src/styles/tailwind.css +1261 -70
package/src/index.css
CHANGED
@@ -192,21 +192,6 @@
|
|
192
192
|
@apply text-sm font-normal;
|
193
193
|
}
|
194
194
|
|
195
|
-
|
196
|
-
.button-sm {
|
197
|
-
@apply text-hds-d-body3c-medium py-1.5 px-4 rounded-full;
|
198
|
-
|
199
|
-
}
|
200
|
-
|
201
|
-
.button-md {
|
202
|
-
@apply text-hds-d-body3c-medium rounded-full py-2.5 px-5;
|
203
|
-
}
|
204
|
-
|
205
|
-
.button-lg {
|
206
|
-
@apply text-hds-d-body1c-medium rounded-full py-3 px-6;
|
207
|
-
|
208
|
-
}
|
209
|
-
|
210
195
|
.button-xl {
|
211
196
|
@apply text-md-medium rounded-full py-3 px-7;
|
212
197
|
}
|
@@ -215,6 +200,9 @@
|
|
215
200
|
@apply text-lg-medium rounded-full py-4 px-8;
|
216
201
|
|
217
202
|
}
|
203
|
+
.bg-transparent{
|
204
|
+
background-color: transparent;
|
205
|
+
}
|
218
206
|
|
219
207
|
.language-javascript {
|
220
208
|
background-color: transparent !important;
|