Dominic Elm
commited on
Commit
·
b939a0a
1
Parent(s):
cf26551
chore: disable css shorthand to avoid conflicts
Browse files
packages/bolt/uno.config.ts
CHANGED
|
@@ -104,6 +104,13 @@ export default defineConfig({
|
|
| 104 |
kdb: 'bg-bolt-elements-code-background text-bolt-elements-code-text py-1 px-1.5 rounded-md',
|
| 105 |
'max-w-chat': 'max-w-[var(--chat-max-width)]',
|
| 106 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
theme: {
|
| 108 |
colors: {
|
| 109 |
...COLOR_PRIMITIVES,
|
|
|
|
| 104 |
kdb: 'bg-bolt-elements-code-background text-bolt-elements-code-text py-1 px-1.5 rounded-md',
|
| 105 |
'max-w-chat': 'max-w-[var(--chat-max-width)]',
|
| 106 |
},
|
| 107 |
+
rules: [
|
| 108 |
+
/**
|
| 109 |
+
* This shorthand doesn't exist in Tailwind and we overwrite it to avoid
|
| 110 |
+
* any conflicts with minified CSS classes.
|
| 111 |
+
*/
|
| 112 |
+
['b', {}],
|
| 113 |
+
],
|
| 114 |
theme: {
|
| 115 |
colors: {
|
| 116 |
...COLOR_PRIMITIVES,
|