mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-23 08:20:39 +01:00
fix(module): stop using tailwind's shorthand arbitrary variable syntax (#2366)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
export default {
|
||||
slots: {
|
||||
overlay: 'fixed inset-0 bg-[--ui-bg-elevated]/75',
|
||||
content: 'fixed bg-[--ui-bg] ring ring-[--ui-border] flex focus:outline-none',
|
||||
handle: 'shrink-0 rounded-full bg-[--ui-bg-accented]',
|
||||
overlay: 'fixed inset-0 bg-[var(--ui-bg-elevated)]/75',
|
||||
content: 'fixed bg-[var(--ui-bg)] ring ring-[var(--ui-border)] flex focus:outline-none',
|
||||
handle: 'shrink-0 rounded-full bg-[var(--ui-bg-accented)]',
|
||||
container: 'w-full flex flex-col gap-4 p-4 overflow-y-auto',
|
||||
header: '',
|
||||
title: 'text-[--ui-text-highlighted] font-semibold',
|
||||
description: 'mt-1 text-[--ui-text-muted] text-sm',
|
||||
title: 'text-[var(--ui-text-highlighted)] font-semibold',
|
||||
description: 'mt-1 text-[var(--ui-text-muted)] text-sm',
|
||||
body: 'flex-1',
|
||||
footer: 'flex flex-col gap-1.5'
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user