Skip to content

Commit 63dae10

Browse files
committed
Update confirmation modal button styles with borders
1 parent 99f4f63 commit 63dae10

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

src/lib/components/ConfirmationModal.svelte

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,35 @@
103103
gap: var(--space-sm);
104104
padding: var(--space-sm) var(--space-md) var(--space-md);
105105
}
106+
107+
.dialog-footer button {
108+
padding: var(--space-sm) var(--space-md);
109+
border: 1px solid var(--border);
110+
border-radius: var(--radius-md);
111+
font-size: 11px;
112+
font-weight: 500;
113+
cursor: pointer;
114+
transition: all var(--transition-fast);
115+
}
116+
117+
.dialog-footer button.ghost {
118+
background: transparent;
119+
color: var(--text-muted);
120+
}
121+
122+
.dialog-footer button.ghost:hover {
123+
background: var(--surface-hover);
124+
color: var(--text);
125+
border-color: var(--border-focus);
126+
}
127+
128+
.dialog-footer button:not(.ghost) {
129+
background: var(--accent);
130+
color: var(--surface);
131+
border-color: var(--accent);
132+
}
133+
134+
.dialog-footer button:not(.ghost):hover {
135+
filter: brightness(1.1);
136+
}
106137
</style>

0 commit comments

Comments
 (0)