23 lines
425 B
CSS
23 lines
425 B
CSS
@import "tailwindcss";
|
|
|
|
.hljs,
|
|
code[class*="language-"],
|
|
pre[class*="language-"] {
|
|
background: transparent !important;
|
|
}
|
|
|
|
/* ➡️ Hors du @layer */
|
|
code[class*="language-"],
|
|
pre[class*="language-"] {
|
|
white-space: pre-wrap !important;
|
|
word-break: break-word !important;
|
|
}
|
|
|
|
@layer utilities {
|
|
.neon-border {
|
|
box-shadow:
|
|
0 0 0 1.5px oklch(0.65 0.2 250 / 0.5),
|
|
0 0 10px oklch(0.65 0.2 250 / 0.2);
|
|
}
|
|
}
|