diff options
Diffstat (limited to 'src/components/TileLayerControl/TileLayerControl.module.css')
-rw-r--r-- | src/components/TileLayerControl/TileLayerControl.module.css | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/components/TileLayerControl/TileLayerControl.module.css b/src/components/TileLayerControl/TileLayerControl.module.css new file mode 100644 index 0000000..ffff063 --- /dev/null +++ b/src/components/TileLayerControl/TileLayerControl.module.css @@ -0,0 +1,20 @@ +.tileLayerControl {
+ width: 64px;
+ height: 64px;
+}
+
+.map {
+ background-image: url('/public/icons/map.png');
+}
+
+.satellite {
+ background-image: url('/public/icons/satellite.png');
+}
+
+.tileLayerControl button {
+ width: 100%;
+ height: 100%;
+ border: none;
+ cursor: pointer;
+}
+
|