fix night map style

This commit is contained in:
Mateusz Konieczny 2022-12-08 19:30:34 +01:00
parent 778ff84f31
commit 3ac50e2549
2 changed files with 3 additions and 4 deletions

View File

@ -4,7 +4,7 @@ interface InfoBoxProps {
msg?: string;
// https://react-bootstrap.github.io/components/alerts/
// predefined valid values
type?: 'info' | 'warning' | 'success' | 'danger'
type?: 'info' | 'warning' | 'success' | 'danger' | 'dark'
}
const InfoBox: React.FC<InfoBoxProps> = ({msg, children, type = 'info'}) => (

View File

@ -1,9 +1,8 @@
.map-button-theme {
.night-theme {
filter: grayscale(100%) invert(1);
}
.map-button-theme {
.light-theme {
filter: none;
}