Rewriting classes for de-oopsie-ing

This commit is contained in:
Michał Gdula 2022-10-06 12:06:14 +00:00
parent 7f1782d7c6
commit 646b41e90a
7 changed files with 42 additions and 20 deletions

View file

@ -1054,6 +1054,7 @@ body * {
padding: 0.5rem;
display: inline-block;
font-size: 16px;
font-family: "Secular One", sans-serif;
text-decoration: none;
background-color: #E8E3E3;
border: none;
@ -1064,11 +1065,17 @@ body * {
padding: 0.5rem;
display: inline-block;
font-size: 16px;
font-family: "Secular One", sans-serif;
text-decoration: none;
background-color: #E8E3E3;
border: none;
border-radius: 3px;
}
.btn:disabled {
opacity: 0.5;
cursor: not-allowed;
outline: none;
}
a.btn {
text-align: center;

View file

@ -100,6 +100,7 @@ body {
display: inline-block;
font-size: 16px;
font-family: $font-body;
text-decoration: none;
@ -112,6 +113,12 @@ body {
border-radius: 3px;
}
}
&:disabled {
opacity: 0.5;
cursor: not-allowed;
outline: none;
}
}
a.btn {