mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 18:14:19 -08:00
* Fix button centering on iphone For some reason, physical iPhones are not centering the text inside the map buttons correctly. (`48`, `AK`, `HI`, `PR`) * convert to verbose css syntax * Test using svg buttons * Remove unused style reference * Fix new icon svg images were "eating" the button's click events
14 lines
553 B
TypeScript
14 lines
553 B
TypeScript
declare namespace TerritoryFocusControlModuleScssNamespace {
|
|
export interface ITerritoryFocusControlModuleScss {
|
|
territoryFocusContainer: string;
|
|
}
|
|
}
|
|
|
|
declare const TerritoryFocusControlModuleScssModule:
|
|
TerritoryFocusControlModuleScssNamespace.ITerritoryFocusControlModuleScss & {
|
|
/** WARNING: Only available when `css-loader` is used without `style-loader` or `mini-css-extract-plugin` */
|
|
locals: TerritoryFocusControlModuleScssNamespace.ITerritoryFocusControlModuleScss;
|
|
};
|
|
|
|
export = TerritoryFocusControlModuleScssModule;
|
|
|