mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-22 04:23:01 +00:00
theme/default: Fix mini tag margin
This commit is contained in:
parent
390eafb7fc
commit
9fa2e935b0
2 changed files with 3 additions and 1 deletions
|
@ -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
|
- Squashed a bug in the new upgraded get/set_array_simple search optimisation
|
||||||
- Updated Parsedown to squash warning in PHP 7.4+
|
- 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.
|
- 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
|
### Changed
|
||||||
- Improved the search indexing system performance - again
|
- Improved the search indexing system performance - again
|
||||||
|
|
|
@ -240,7 +240,7 @@ input[type=submit].large { width: 100%; box-sizing: border-box; padding: 0.5em;
|
||||||
.page-list li .tags { margin: 0 1rem; }
|
.page-list li .tags { margin: 0 1rem; }
|
||||||
.tag-list { list-style-type: none; margin: 0.5rem; padding: 0.5rem; }
|
.tag-list { list-style-type: none; margin: 0.5rem; padding: 0.5rem; }
|
||||||
.tag-list li { display: inline-block; margin: 1rem; }
|
.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;}
|
.grid-large { display: grid; grid-template-columns: repeat(auto-fit, minmax(25em, 1fr)); grid-auto-rows: min-content; grid-gap: 1em; justify-content: center;}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue