@trackunit/css-tailwind 0.0.120 → 0.0.122
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/package.json +1 -1
- package/tailwind-base.generated.css +8 -18
package/package.json
CHANGED
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
margin: 0;
|
|
107
107
|
max-width: calc(var(--rdp-cell-size) * 7);
|
|
108
108
|
border-collapse: collapse;
|
|
109
|
-
@apply bg-slate-100
|
|
109
|
+
@apply rounded bg-slate-100;
|
|
110
110
|
}
|
|
111
111
|
.rdp-with_weeknumber .rdp-table {
|
|
112
112
|
max-width: calc(var(--rdp-cell-size) * 8);
|
|
@@ -263,19 +263,19 @@
|
|
|
263
263
|
.rdp-day_selected:focus:not([disabled]) {
|
|
264
264
|
border: var(--rdp-outline-selected);
|
|
265
265
|
}
|
|
266
|
-
.rdp:not([dir=rtl]) .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
266
|
+
.rdp:not([dir="rtl"]) .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
267
267
|
border-top-right-radius: 0;
|
|
268
268
|
border-bottom-right-radius: 0;
|
|
269
269
|
}
|
|
270
|
-
.rdp:not([dir=rtl]) .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
270
|
+
.rdp:not([dir="rtl"]) .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
271
271
|
border-top-left-radius: 0;
|
|
272
272
|
border-bottom-left-radius: 0;
|
|
273
273
|
}
|
|
274
|
-
.rdp[dir=rtl] .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
274
|
+
.rdp[dir="rtl"] .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
275
275
|
border-top-left-radius: 0;
|
|
276
276
|
border-bottom-left-radius: 0;
|
|
277
277
|
}
|
|
278
|
-
.rdp[dir=rtl] .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
278
|
+
.rdp[dir="rtl"] .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
279
279
|
border-top-right-radius: 0;
|
|
280
280
|
border-bottom-right-radius: 0;
|
|
281
281
|
}
|
|
@@ -363,23 +363,13 @@
|
|
|
363
363
|
font-weight: 700;
|
|
364
364
|
}
|
|
365
365
|
:root {
|
|
366
|
-
--fonts-default:
|
|
367
|
-
"
|
|
368
|
-
-apple-system,
|
|
369
|
-
BlinkMacSystemFont,
|
|
370
|
-
"Segoe UI",
|
|
371
|
-
Roboto,
|
|
372
|
-
Oxygen,
|
|
373
|
-
Ubuntu,
|
|
374
|
-
Cantarell,
|
|
375
|
-
"Open Sans",
|
|
376
|
-
"Helvetica Neue",
|
|
377
|
-
sans-serif;
|
|
366
|
+
--fonts-default: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
|
|
367
|
+
"Open Sans", "Helvetica Neue", sans-serif;
|
|
378
368
|
--fonts-marketplace: "GT Walsheim", var(--fonts-default);
|
|
379
369
|
}
|
|
380
370
|
|
|
381
371
|
/* libs/css/core/src/lib/core.css */
|
|
382
|
-
[type=button] {
|
|
372
|
+
[type="button"] {
|
|
383
373
|
-webkit-appearance: none;
|
|
384
374
|
-moz-appearance: none;
|
|
385
375
|
appearance: none;
|