Added disabled button

This commit is contained in:
Florian Sylvain
2022-12-23 21:15:02 +01:00
parent 2c2b478d5e
commit 17b41cc232
2 changed files with 18 additions and 8 deletions
+8 -1
View File
@@ -82,7 +82,8 @@ h2, h3, h4, h5, h6 {
color: red;
}
.button-primary {
.button-primary,
.button-disabled {
border-radius: var(--radius);
border: none;
@@ -101,4 +102,10 @@ h2, h3, h4, h5, h6 {
.button-primary:active {
background-color: var(--primary-dark);
}
.button-disabled {
color: var(--neutral-dark);
background-color: var(--neutral-light);
cursor: default;
}