We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bde580 commit a376cb0Copy full SHA for a376cb0
2 files changed
src/app.css
@@ -8,7 +8,6 @@
8
9
.ascii {
10
font-family: 'Courier Prime', monospace;
11
- @apply leading-none whitespace-pre text-primary;
12
}
13
14
/*----------------------------------------------------------------------*/
src/lib/components/brand.svelte
@@ -23,7 +23,12 @@
23
</script>
24
25
<pre
26
- class={cn(brandVariants.base, brandVariants.size[size], className)}
+ class={cn(
27
+ 'leading-none whitespace-pre-wrap',
28
+ brandVariants.base,
29
+ brandVariants.size[size],
30
+ className
31
+ )}
32
aria-disabled="true"
33
{...props}>{brand}
34
</pre>
0 commit comments