2022-04-08 16:16:12 +01:00
|
|
|
.button {
|
|
|
|
background-color: var(--primary-color);
|
|
|
|
color: var(--background-color);
|
|
|
|
padding: 2px 10px;
|
|
|
|
border-radius: 5px;
|
|
|
|
border: none;
|
|
|
|
font-family: 'Inter';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 24px;
|
|
|
|
min-width: 150px;
|
|
|
|
display: block;
|
|
|
|
padding: 4px 15px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2022-04-30 06:08:13 +01:00
|
|
|
.button:disabled {
|
|
|
|
background-color: var(--primary-color-disabled);
|
|
|
|
}
|
|
|
|
|
2022-04-08 16:16:12 +01:00
|
|
|
.remove {
|
|
|
|
color: #FF5B55;
|
|
|
|
background-color: transparent;
|
2023-04-21 11:47:29 +01:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
2022-04-08 16:16:12 +01:00
|
|
|
}
|