diff options
author | Hsieh Chin Fan <pham@topo.tw> | 2024-09-25 16:56:43 +0800 |
---|---|---|
committer | Hsieh Chin Fan <pham@topo.tw> | 2024-09-26 19:40:48 +0800 |
commit | 435a2fcae3416fc0f37bfbfa2f27d2ec6f909d83 (patch) | |
tree | b6ed0ee29202f56577e86dae0de39ef69fffb150 /src/css | |
parent | c02d1d0cbd6e0cf4d011a1d96d0433e609f799db (diff) |
feat: add menu items for dumbymap.utils
Diffstat (limited to 'src/css')
-rw-r--r-- | src/css/index.css | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/css/index.css b/src/css/index.css index a5fd37f..a84a029 100644 --- a/src/css/index.css +++ b/src/css/index.css | |||
@@ -114,7 +114,7 @@ body { | |||
114 | z-index: 100; | 114 | z-index: 100; |
115 | 115 | ||
116 | border: 2px solid gray; | 116 | border: 2px solid gray; |
117 | border-radius: 0.5rem; | 117 | border-radius: 6px; |
118 | 118 | ||
119 | background: white; | 119 | background: white; |
120 | min-width: 10rem; | 120 | min-width: 10rem; |
@@ -164,8 +164,21 @@ body { | |||
164 | } | 164 | } |
165 | } | 165 | } |
166 | 166 | ||
167 | .menu-item-add-geolink { | 167 | .menu-item { |
168 | display: flex; | ||
168 | padding: 0.5rem; | 169 | padding: 0.5rem; |
169 | 170 | ||
171 | z-index: 9999; | ||
172 | |||
170 | cursor: pointer; | 173 | cursor: pointer; |
174 | justify-content: space-between; | ||
175 | |||
176 | &:hover { | ||
177 | background: rgb(226 232 240); | ||
178 | } | ||
179 | |||
180 | .info { | ||
181 | color: steelblue; | ||
182 | font-weight: bold; | ||
183 | } | ||
171 | } | 184 | } |