diff options
author | Hsieh Chin Fan <pham@topo.tw> | 2024-10-01 23:57:14 +0800 |
---|---|---|
committer | Hsieh Chin Fan <pham@topo.tw> | 2024-10-01 23:57:14 +0800 |
commit | 5fa5b5c4c6720f6e48a1611481ac8aa2a0e6429b (patch) | |
tree | f2b1bea7c093811f7c2f4a478667c9fa91f480f4 /src | |
parent | a9c63b6b55040851707ddef851b412ab1635c0c6 (diff) |
chore(CSS): beautify content of menu item
Diffstat (limited to 'src')
-rw-r--r-- | src/css/dumbymap.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/css/dumbymap.css b/src/css/dumbymap.css index b7b9b7c..50728fc 100644 --- a/src/css/dumbymap.css +++ b/src/css/dumbymap.css | |||
@@ -262,7 +262,6 @@ p a[href^='http']::after { | |||
262 | } | 262 | } |
263 | 263 | ||
264 | .menu-item { | 264 | .menu-item { |
265 | display: flex; | ||
266 | justify-content: space-between; | 265 | justify-content: space-between; |
267 | padding: 0.5rem; | 266 | padding: 0.5rem; |
268 | 267 | ||
@@ -277,14 +276,19 @@ p a[href^='http']::after { | |||
277 | } | 276 | } |
278 | 277 | ||
279 | .info { | 278 | .info { |
279 | display: inline-block; | ||
280 | float: right; | ||
281 | |||
280 | padding-inline: 1em; | 282 | padding-inline: 1em; |
281 | 283 | ||
282 | color: steelblue; | 284 | color: steelblue; |
283 | font-weight: bold; | 285 | font-weight: bold; |
284 | } | 286 | } |
285 | 287 | ||
286 | &.folder::after { | 288 | &.folder::before { |
287 | content: '⏵'; | 289 | content: '⏵'; |
290 | display: inline-block; | ||
291 | float: right; | ||
288 | } | 292 | } |
289 | } | 293 | } |
290 | 294 | ||