fix: add "px" suffix to borderWidth of Ui:C:container

This commit is contained in:
poppingmoon 2026-01-10 10:57:48 +09:00
parent 141964e57c
commit 92f7ce0c60
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ const containerStyle = computed(() => {
const isBordered = c.borderWidth ?? c.borderColor ?? c.borderStyle;
const border = isBordered ? {
borderWidth: c.borderWidth ?? '1px',
borderWidth: `${c.borderWidth ?? 1}px`,
borderColor: c.borderColor ?? 'var(--MI_THEME-divider)',
borderStyle: c.borderStyle ?? 'solid',
} : undefined;