@basis-ng/styles 0.0.1-alpha.135 → 0.0.1-alpha.136
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
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
b-input-group {
|
|
2
2
|
/* Base */
|
|
3
3
|
@apply flex overflow-hidden items-center;
|
|
4
|
-
@apply bg-primary/
|
|
5
|
-
@apply dark:bg-primary-dark/
|
|
4
|
+
@apply bg-primary/5 text-secondary-foreground inset-ring-1 inset-ring-primary/20 shadow-xs;
|
|
5
|
+
@apply dark:bg-primary-dark/5 dark:text-secondary-foreground-dark dark:inset-ring-primary-dark/30;
|
|
6
6
|
|
|
7
7
|
/* Base md by default */
|
|
8
8
|
@apply px-2.5 py-0 text-sm h-8 rounded-size-md gap-1.5;
|
package/src/components/input.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* Input styles — Base / Sizes / States */
|
|
2
2
|
input[b-input] {
|
|
3
3
|
/* Base */
|
|
4
|
-
@apply bg-primary/
|
|
5
|
-
@apply dark:bg-primary-dark/
|
|
4
|
+
@apply bg-primary/5 text-secondary-foreground inset-ring-1 inset-ring-primary/20 shadow-xs;
|
|
5
|
+
@apply dark:bg-primary-dark/5 dark:text-secondary-foreground-dark dark:inset-ring-primary-dark/30;
|
|
6
6
|
|
|
7
7
|
/* Base md by default */
|
|
8
8
|
@apply px-2.5 py-0 text-sm h-8 rounded-size-md;
|