@shlinkio/shlink-frontend-kit 0.9.1 → 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 +10 -3
- package/package.json +1 -1
package/dist/tailwind.preset.css
CHANGED
|
@@ -112,9 +112,12 @@
|
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
a {
|
|
115
|
-
/*
|
|
116
|
-
|
|
117
|
-
|
|
115
|
+
/*
|
|
116
|
+
* FIXME Set these styles 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
|
+
*/
|
|
120
|
+
color: var(--tw-color-lm-brand);
|
|
118
121
|
border-radius: var(--tw-radius-xs);
|
|
119
122
|
|
|
120
123
|
@apply
|
|
@@ -123,6 +126,10 @@
|
|
|
123
126
|
tw:focus-visible:z-1;
|
|
124
127
|
}
|
|
125
128
|
|
|
129
|
+
[data-theme="dark"] a {
|
|
130
|
+
color: var(--tw-color-dm-brand);
|
|
131
|
+
}
|
|
132
|
+
|
|
126
133
|
h1 {
|
|
127
134
|
@apply tw:text-[2.5rem]/[1.2] tw:m-0 tw:font-medium;
|
|
128
135
|
}
|
package/package.json
CHANGED