@shlinkio/shlink-frontend-kit 0.9.1 → 0.9.2
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/tailwind.preset.css +13 -3
- package/package.json +1 -1
package/dist/tailwind.preset.css
CHANGED
|
@@ -112,9 +112,11 @@
|
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
a {
|
|
115
|
-
/*
|
|
116
|
-
|
|
117
|
-
|
|
115
|
+
/*
|
|
116
|
+
* FIXME Set this style as plain CSS instead of @apply to avoid higher specificity.
|
|
117
|
+
* This can be set via @apply as soon as we stop using important for tailwind classes, once bootstrap is
|
|
118
|
+
* removed
|
|
119
|
+
*/
|
|
118
120
|
border-radius: var(--tw-radius-xs);
|
|
119
121
|
|
|
120
122
|
@apply
|
|
@@ -123,6 +125,14 @@
|
|
|
123
125
|
tw:focus-visible:z-1;
|
|
124
126
|
}
|
|
125
127
|
|
|
128
|
+
/*
|
|
129
|
+
* FIXME Workaround to avoid paginator items to be set with the wrong color.
|
|
130
|
+
* Colors can be set above as soon as we stop using important for tailwind classes, once bootstrap is removed.
|
|
131
|
+
*/
|
|
132
|
+
a:not(.tw\:text-white) {
|
|
133
|
+
@apply tw:text-lm-brand tw:dark:text-dm-brand
|
|
134
|
+
}
|
|
135
|
+
|
|
126
136
|
h1 {
|
|
127
137
|
@apply tw:text-[2.5rem]/[1.2] tw:m-0 tw:font-medium;
|
|
128
138
|
}
|
package/package.json
CHANGED