mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-08 22:33:24 +00:00
30 lines
374 B
Plaintext
Executable File
30 lines
374 B
Plaintext
Executable File
button {
|
|
.border-radius(0);
|
|
color: @primary;
|
|
svg {
|
|
fill: @primary;
|
|
}
|
|
border: none;
|
|
font-family: @fStandard;
|
|
|
|
padding: 0.5em;
|
|
cursor: pointer;
|
|
background: none;
|
|
outline: none;
|
|
|
|
&.danger {
|
|
color: red;
|
|
svg {
|
|
fill: red;
|
|
}
|
|
|
|
}
|
|
|
|
&:disabled {
|
|
cursor: not-allowed;
|
|
color: @disabled;
|
|
svg {
|
|
fill: @disabled;
|
|
}
|
|
}
|
|
} |