2026-03-07 13:20:43 -06:00

34 lines
543 B
CSS

.org-secondary-btn {
background: var(--bg-surface);
color: var(--text-main);
border: 1px solid var(--border);
&:hover {
background: var(--bg-surface-hover);
color: var(--text-main);
}
}
.org-danger-btn {
background: #7f1d1d;
color: #fef2f2;
&:hover {
background: #991b1b;
}
}
.org-icon-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 2.5rem;
height: 2.5rem;
padding: 0;
}
.org-icon {
width: 1rem;
height: 1rem;
}