index.scss: change info toast color

The adjusted color made it look like the toast was disabled. Having
buttons the same color as the toast is a bit weird but consistent
with the Blueprintjs style for toasts.
This commit is contained in:
David Lechner
2023-05-15 16:33:47 -05:00
committed by David Lechner
parent 4c272d132d
commit b4db152fca
+3 -6
View File
@@ -103,16 +103,13 @@ body {
max-width: 700px;
&.#{bp.$ns}-intent-primary {
background-color: color.adjust(pb.$pybricks-blue, $lightness: -10%);
background-color: pb.$pybricks-blue;
& .#{bp.$ns}-button {
background-color: color.adjust(
pb.$pybricks-blue,
$lightness: -10%
) !important;
background-color: pb.$pybricks-blue !important;
&:hover {
background: pb.$pybricks-blue !important;
background: color.adjust(pb.$pybricks-blue, $lightness: -5%) !important;
}
}
}