cleanup templates:

- move out shared functions to shared templates
  - remove useless classes
  - simplify
  - various cleanups & enhancements
This commit is contained in:
2023-07-24 12:02:51 +02:00
parent f66ed70c82
commit 18a823cb6a
37 changed files with 298 additions and 393 deletions

View File

@ -414,6 +414,12 @@ details[open] summary {
color: var(--gcg-color-primary);
}
.tag-list {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.tag-list a {
display: block;
padding: 5px 10px;
@ -976,3 +982,15 @@ link:focus,
padding-right: 10%;
}
}
#map {
height: 50vh;
}
.object-cover {
object-fit: cover;
}
.min-w-0 {
min-width: 0;
}