Add update application component and danger color for buttons.

This commit is contained in:
2021-08-07 23:51:44 +02:00
parent 82053e4002
commit 84d66ec45a
13 changed files with 255 additions and 100 deletions

View File

@@ -37,6 +37,24 @@ button, a.button {
}
}
&.danger {
border-color: $danger-border;
background-image: linear-gradient(
$danger-background-top,
$danger-background-bottom
);
color: white;
font-weight: 500;
&:active {
border-color: $danger-active-border;
background-image: linear-gradient(
$danger-active-background-top,
$danger-active-background-bottom
);
}
}
&.help {
border-radius: 10em;
padding: 0;