@bcc-code/component-library-vue 0.10.0 → 0.10.1
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/component-library.js +3 -3
- package/dist/component-library.umd.cjs +3 -3
- package/dist/index.css +1 -1
- package/dist/theme.css +5 -5
- package/package.json +1 -1
package/dist/theme.css
CHANGED
|
@@ -2430,27 +2430,27 @@
|
|
|
2430
2430
|
|
|
2431
2431
|
|
|
2432
2432
|
/* from ./BccTag/BccTag.css */
|
|
2433
|
-
|
|
2434
2433
|
@layer components {
|
|
2435
2434
|
.bcc-tag.bcc-badge {
|
|
2436
2435
|
@apply w-auto;
|
|
2437
2436
|
}
|
|
2438
2437
|
.bcc-tag.bcc-badge.md {
|
|
2439
|
-
@apply
|
|
2438
|
+
@apply text-body-md h-6;
|
|
2440
2439
|
}
|
|
2441
2440
|
.bcc-tag.bcc-badge.sm {
|
|
2442
|
-
@apply
|
|
2441
|
+
@apply text-body-sm h-5;
|
|
2443
2442
|
}
|
|
2444
2443
|
.bcc-tag.bcc-badge.lg {
|
|
2445
|
-
@apply
|
|
2444
|
+
@apply text-body-md h-8;
|
|
2446
2445
|
}
|
|
2447
2446
|
.bcc-tag.bcc-badge.xl {
|
|
2448
|
-
@apply
|
|
2447
|
+
@apply text-body-lg h-10;
|
|
2449
2448
|
}
|
|
2450
2449
|
}
|
|
2451
2450
|
|
|
2452
2451
|
|
|
2453
2452
|
|
|
2453
|
+
|
|
2454
2454
|
/* === ./components/wrapped/styles.css === */
|
|
2455
2455
|
|
|
2456
2456
|
/* from ./BccAvatar/BccAvatar.css */
|
package/package.json
CHANGED