style: bump border-radius globally - rounded to rounded-lg, rounded-lg to rounded-xl
This commit is contained in:
@@ -56,7 +56,7 @@ function navigate(path: string) {
|
||||
<component :is="item.icon" class="w-[18px] h-[18px]" :stroke-width="1.5" />
|
||||
|
||||
<!-- Tooltip -->
|
||||
<div class="absolute left-full ml-2 px-2 py-1 bg-bg-elevated border border-border-subtle rounded text-[0.6875rem] text-text-primary whitespace-nowrap opacity-0 pointer-events-none group-hover:opacity-100 transition-opacity duration-150 z-50">
|
||||
<div class="absolute left-full ml-2 px-2 py-1 bg-bg-elevated border border-border-subtle rounded-lg text-[0.6875rem] text-text-primary whitespace-nowrap opacity-0 pointer-events-none group-hover:opacity-100 transition-opacity duration-150 z-50">
|
||||
<div class="absolute -left-1 top-1/2 -translate-y-1/2 w-0 h-0 border-y-4 border-y-transparent border-r-4" style="border-right-color: var(--color-bg-elevated)"></div>
|
||||
{{ item.name }}
|
||||
</div>
|
||||
|
||||
@@ -11,7 +11,7 @@ const toastStore = useToastStore()
|
||||
v-for="toast in toastStore.toasts"
|
||||
:key="toast.id"
|
||||
@click="toastStore.removeToast(toast.id)"
|
||||
class="w-80 flex items-center gap-3 px-4 py-3 bg-bg-surface border border-border-subtle rounded shadow-lg cursor-pointer pointer-events-auto border-l-[3px]"
|
||||
class="w-80 flex items-center gap-3 px-4 py-3 bg-bg-surface border border-border-subtle rounded-lg shadow-lg cursor-pointer pointer-events-auto border-l-[3px]"
|
||||
:class="[
|
||||
toast.exiting ? 'animate-toast-exit' : 'animate-toast-enter',
|
||||
toast.type === 'success' ? 'border-l-status-running' : '',
|
||||
|
||||
Reference in New Issue
Block a user