Intermediate commit

This commit is contained in:
Justin Visser 2026-02-26 16:09:57 +01:00
parent 0e9e49df16
commit 3d4cfeff1a
65 changed files with 5507 additions and 333 deletions

View file

@ -12,15 +12,15 @@ const props = withDefaults(
const sizeClass = computed(() => {
if (props.size === "sm") {
return "h-5 w-5";
return "h-7 w-7";
}
if (props.size === "lg") {
return "h-8 w-8";
return "h-10 w-10";
}
if (props.size === "xl") {
return "h-12 w-12";
return "h-14 w-14";
}
return "h-6 w-6";
return "h-7 w-7";
});
const logoMaskStyle: Record<string, string> = {