added darq

This commit is contained in:
muerwre 2019-02-25 18:47:15 +07:00
parent aaa0b5b476
commit 15f7f281d3
2 changed files with 3 additions and 3 deletions

View file

@ -66,7 +66,7 @@ const TILEMAPS: ITileMaps = {
}, },
}; };
const ENABLED: Array<keyof ITileMaps> = ['BLANK', 'DEFAULT', 'DGIS', 'HOT']; const ENABLED: Array<keyof ITileMaps> = ['BLANK', 'DEFAULT', 'DGIS', 'HOT', 'DARQ'];
export const DEFAULT_PROVIDER: keyof ITileMaps = ENABLED[0]; export const DEFAULT_PROVIDER: keyof ITileMaps = ENABLED[0];
export const PROVIDERS: Partial<ITileMaps> = ENABLED.reduce((obj, provider) => ({ export const PROVIDERS: Partial<ITileMaps> = ENABLED.reduce((obj, provider) => ({

View file

@ -92,11 +92,11 @@
} }
.touch-hinter-poly { .touch-hinter-poly {
stroke: rgba(255, 50, 0, 0); stroke: rgba(255, 50, 0, 0.1);
cursor: grab; cursor: grab;
@media (max-width: @mobile_breakpoint) { @media (max-width: @mobile_breakpoint) {
stroke: rgba(255, 50, 0, 0.1); stroke: rgba(255, 50, 0, 0.2);
} }
} }