From e18698dae04931166d2c82d80df4adaa63521be1 Mon Sep 17 00:00:00 2001 From: Rachel Powers <508861+Ryex@users.noreply.github.com> Date: Mon, 22 Apr 2024 16:11:25 -0700 Subject: [PATCH] fix sl-divider (tailwindcss was clobering it's border display) Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com> --- www/src/ts/components/base.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/www/src/ts/components/base.ts b/www/src/ts/components/base.ts index 3f40530..795cd41 100644 --- a/www/src/ts/components/base.ts +++ b/www/src/ts/components/base.ts @@ -31,6 +31,10 @@ export const defaultCss = [ .flex-g { flex-grow: 1; } + sl-divider:not([vertical]) { + border-top-width: var(--width); + border-color: var(--color); + } `, ];