fix night map style
This commit is contained in:
parent
778ff84f31
commit
3ac50e2549
@ -4,7 +4,7 @@ interface InfoBoxProps {
|
|||||||
msg?: string;
|
msg?: string;
|
||||||
// https://react-bootstrap.github.io/components/alerts/
|
// https://react-bootstrap.github.io/components/alerts/
|
||||||
// predefined valid values
|
// predefined valid values
|
||||||
type?: 'info' | 'warning' | 'success' | 'danger'
|
type?: 'info' | 'warning' | 'success' | 'danger' | 'dark'
|
||||||
}
|
}
|
||||||
|
|
||||||
const InfoBox: React.FC<InfoBoxProps> = ({msg, children, type = 'info'}) => (
|
const InfoBox: React.FC<InfoBoxProps> = ({msg, children, type = 'info'}) => (
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
|
.night-theme {
|
||||||
.map-button-theme {
|
|
||||||
filter: grayscale(100%) invert(1);
|
filter: grayscale(100%) invert(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.map-button-theme {
|
.light-theme {
|
||||||
filter: none;
|
filter: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user