2024-10-23 08:56:47 +02:00
|
|
|
button.components-button {
|
|
|
|
&.is-primary, &.is-secondary {
|
2024-10-24 13:54:50 +02:00
|
|
|
&:not(:disabled) {
|
|
|
|
background-color: $color-blueberry;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $gradient-header;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
background-color: $color-gray-500;
|
|
|
|
color: $color-white;
|
|
|
|
}
|
|
|
|
|
2024-10-23 08:56:47 +02:00
|
|
|
border-radius: 2px;
|
|
|
|
padding: 14px 17px;
|
|
|
|
height: auto;
|
2024-10-24 06:35:48 +02:00
|
|
|
|
2024-10-24 13:54:50 +02:00
|
|
|
|
2024-10-23 08:56:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.is-primary {
|
|
|
|
@include font(13, 16, 500);
|
|
|
|
}
|
|
|
|
|
2024-10-25 14:35:16 +02:00
|
|
|
&.is-secondary:not(:disabled) {
|
|
|
|
border-color:$color-blueberry;
|
|
|
|
background-color:$color-white;
|
|
|
|
color:$color-blueberry;
|
|
|
|
&:hover{
|
|
|
|
background-color:$color-white;
|
|
|
|
background:none;
|
|
|
|
}
|
2024-10-23 08:56:47 +02:00
|
|
|
}
|
2024-10-24 06:35:48 +02:00
|
|
|
|
|
|
|
&.is-tertiary {
|
|
|
|
color: $color-blueberry;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $color-gradient-dark;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus:not(:disabled) {
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
2024-10-23 08:56:47 +02:00
|
|
|
}
|