Added disabled button style

This commit is contained in:
Alexis
2024-01-09 17:40:55 +01:00
parent 1c561f5493
commit b19113f232
2 changed files with 30 additions and 6 deletions

View File

@@ -13,6 +13,10 @@
transition-duration: .2s;
transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
&:disabled {
cursor: not-allowed;
}
&-secondary {
&:not(:disabled) {
background-color: var(--slate-200);
@@ -23,6 +27,11 @@
background-color: var(--blue-500);
}
}
&:disabled {
color: var(--slate-500);
background-color: var(--slate-100);
}
}
&-danger {