diff options
| author | Francesco <tomaselli.fr@gmail.com> | 2025-03-19 19:29:53 +0100 | 
|---|---|---|
| committer | Francesco <tomaselli.fr@gmail.com> | 2025-03-19 19:30:01 +0100 | 
| commit | e034d35451ddd1af4b1ebd6b99ea834f3b1d5eef (patch) | |
| tree | 52a578555d5156056c31d347cc52ba9c6149ef97 | |
| parent | a08ba5d01a796d7fb471c9c6cd5c501f40e65a8c (diff) | |
Nowrap on pagination control
| -rw-r--r-- | assets/css/utils.css | 7 | ||||
| -rw-r--r-- | layouts/partials/pagination-single.html | 2 | 
2 files changed, 7 insertions, 2 deletions
| diff --git a/assets/css/utils.css b/assets/css/utils.css index f53c655..913ace9 100644 --- a/assets/css/utils.css +++ b/assets/css/utils.css @@ -3,6 +3,11 @@      flex-wrap: wrap;  } +.flexnowrap { +    display: flex; +    flex-wrap: nowrap; +} +  .bold {      font-weight: bold;  } @@ -17,4 +22,4 @@  .monospace {      font-family: var(--font-mono); -} +}
\ No newline at end of file diff --git a/layouts/partials/pagination-single.html b/layouts/partials/pagination-single.html index d82c53c..70c9cc5 100644 --- a/layouts/partials/pagination-single.html +++ b/layouts/partials/pagination-single.html @@ -3,7 +3,7 @@  <div class="single-pagination">      <hr /> -    <div class="flex"> +    <div class="flexnowrap">          <div class="single-pagination-prev">              {{ with .PrevInSection }} | 
