@shlinkio/shlink-frontend-kit 0.9.2 → 0.9.3
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 +4 -7
- package/package.json +1 -1
package/dist/tailwind.preset.css
CHANGED
|
@@ -113,10 +113,11 @@
|
|
|
113
113
|
|
|
114
114
|
a {
|
|
115
115
|
/*
|
|
116
|
-
* FIXME Set
|
|
116
|
+
* FIXME Set these styles as plain CSS instead of @apply to avoid higher specificity.
|
|
117
117
|
* This can be set via @apply as soon as we stop using important for tailwind classes, once bootstrap is
|
|
118
118
|
* removed
|
|
119
119
|
*/
|
|
120
|
+
color: var(--tw-color-lm-brand);
|
|
120
121
|
border-radius: var(--tw-radius-xs);
|
|
121
122
|
|
|
122
123
|
@apply
|
|
@@ -125,12 +126,8 @@
|
|
|
125
126
|
tw:focus-visible:z-1;
|
|
126
127
|
}
|
|
127
128
|
|
|
128
|
-
|
|
129
|
-
|
|
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
|
|
129
|
+
[data-theme="dark"] a {
|
|
130
|
+
color: var(--tw-color-dm-brand);
|
|
134
131
|
}
|
|
135
132
|
|
|
136
133
|
h1 {
|
package/package.json
CHANGED