@hazae41/labase 1.0.28 → 1.0.30
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/src/border/index.css +4 -2
- package/src/index.css +4 -0
- package/src/outline/index.css +2 -2
package/package.json
CHANGED
package/src/border/index.css
CHANGED
|
@@ -23,10 +23,12 @@
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
@utility border-opposite-contrast {
|
|
26
|
-
|
|
26
|
+
/* strong dark on light */
|
|
27
|
+
@apply border-black/80;
|
|
27
28
|
|
|
28
29
|
@variant dark {
|
|
29
|
-
|
|
30
|
+
/* strong light on dark */
|
|
31
|
+
@apply border-white/90;
|
|
30
32
|
}
|
|
31
33
|
}
|
|
32
34
|
|
package/src/index.css
CHANGED