@bcc-code/component-library-vue 0.6.1 → 0.6.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/component-library.js +2879 -3332
- package/dist/component-library.umd.cjs +186 -186
- package/dist/index.css +1 -1
- package/dist/theme.css +21 -0
- package/package.json +1 -1
package/dist/theme.css
CHANGED
|
@@ -2343,6 +2343,27 @@
|
|
|
2343
2343
|
}
|
|
2344
2344
|
|
|
2345
2345
|
|
|
2346
|
+
/* from ./BccTag/BccTag.css */
|
|
2347
|
+
|
|
2348
|
+
@layer components {
|
|
2349
|
+
.bcc-tag.bcc-badge {
|
|
2350
|
+
@apply w-auto;
|
|
2351
|
+
}
|
|
2352
|
+
.bcc-tag.bcc-badge.md {
|
|
2353
|
+
@apply text-md h-8 py-0.5 px-2;
|
|
2354
|
+
}
|
|
2355
|
+
.bcc-tag.bcc-badge.sm {
|
|
2356
|
+
@apply text-sm h-6 py-0.5 px-2;
|
|
2357
|
+
}
|
|
2358
|
+
.bcc-tag.bcc-badge.lg {
|
|
2359
|
+
@apply text-lg h-10 py-1 px-2;
|
|
2360
|
+
}
|
|
2361
|
+
.bcc-tag.bcc-badge.xl {
|
|
2362
|
+
@apply text-xl h-12 py-1.5 px-2;
|
|
2363
|
+
}
|
|
2364
|
+
}
|
|
2365
|
+
|
|
2366
|
+
|
|
2346
2367
|
/* from ./BccToggle/BccToggle.css */
|
|
2347
2368
|
@layer components {
|
|
2348
2369
|
.p-toggleswitch.useCtx {
|
package/package.json
CHANGED