mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-09 08:05:19 +00:00
Michał
a499e6c840
Use reccommended database structure Switch to SQLite and update scheme along with it
15 lines
372 B
SCSS
15 lines
372 B
SCSS
.btn {
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 0.25rem;
|
|
|
|
border: 1px solid rgba($white100, 0.3);
|
|
background-color: rgba($white100, 0);
|
|
color: $white100;
|
|
|
|
transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
|
|
|
|
&:active {
|
|
border-color: rgba($white100, 1);
|
|
color: $white100;
|
|
}
|
|
} |