web/satellite: use color palette instead of hex colors for button

Change-Id: I1da9c1927c2768e86f3887477250ae833e29439e
This commit is contained in:
Cameron 2023-05-08 14:00:02 -04:00 committed by Storj Robot
parent 87d0789691
commit 52ff7a66a0

View File

@ -181,16 +181,16 @@ function handleClick(): void {
}
.solid-red {
background-color: #ff1313 !important;
border: 1px solid #ff1313 !important;
background-color: var(--c-red-2) !important;
border: 1px solid var(--c-red-2) !important;
.label {
color: #fff !important;
}
&:hover {
background-color: #c90e0e !important;
border: 1px solid #c90e0e !important;
background-color: var(--c-red-3) !important;
border: 1px solid var(--c-red-3) !important;
}
}