theme/default: Fix mini tag margin

This commit is contained in:
Starbeamrainbowlabs 2020-03-14 17:21:14 +00:00
parent 390eafb7fc
commit 9fa2e935b0
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
2 changed files with 3 additions and 1 deletions

View File

@ -32,6 +32,8 @@ This file holds the changelog for Pepperminty Wiki. This is the master list of t
- Squashed a bug in the new upgraded get/set_array_simple search optimisation
- Updated Parsedown to squash warning in PHP 7.4+
- Trailing commas in the tags box will no longer result in empty tags being added to pages.
- Minor UI fixes
- Multiple tags in search results and on page lists now have a margin between them
### Changed
- Improved the search indexing system performance - again

View File

@ -240,7 +240,7 @@ input[type=submit].large { width: 100%; box-sizing: border-box; padding: 0.5em;
.page-list li .tags { margin: 0 1rem; }
.tag-list { list-style-type: none; margin: 0.5rem; padding: 0.5rem; }
.tag-list li { display: inline-block; margin: 1rem; }
.mini-tag { background: var(--tag); padding: 0.2rem 0.4rem; color: var(--accent-b2); text-decoration: none; }
.mini-tag { background: var(--tag); margin: 0 0.4em; padding: 0.2rem 0.4rem; color: var(--accent-b2); text-decoration: none; }
.grid-large { display: grid; grid-template-columns: repeat(auto-fit, minmax(25em, 1fr)); grid-auto-rows: min-content; grid-gap: 1em; justify-content: center;}