Skip to content

Commit

Permalink
Force CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
Ipstenu committed Aug 23, 2024
1 parent 2cd9cd7 commit 143a9dc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion content/assets/scss/hugo.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ svg#gold-star, .star-gold svg, .star-gold-star svg {
fill: #ffc107;
}

/* Accessibility */
/* Navbars */
nav#NewsListOfYears ul, nav#TranscriptsListOfYears ul {
column-count: 2!important;
}

/* BreadCrumbs */
.breadcrumb {
Expand Down
2 changes: 1 addition & 1 deletion layouts/_default/sidebar/news-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="toc toc-sidebar mb-5 my-md-0 mb-lg-5 p-3 text-body-secondary sticky-top">
<strong class="d-block h6 my-2 pb-2">News by Year:</strong>
<nav id="NewsListOfYears">
<ul class="card-columns" style="column-count: 2;">
<ul class="card-columns" style="column-count: 2!important;">
{{ range where $.Page.Site.Pages.ByDate "Layout" "news-index" }}
{{ if eq .Params.topic "index" }}
<li>
Expand Down
2 changes: 1 addition & 1 deletion layouts/_default/sidebar/transcript-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="toc toc-sidebar mb-5 my-md-0 mb-lg-5 p-3 text-body-secondary sticky-top">
<strong class="d-block h6 my-2 pb-2">Transcripts by Year:</strong>
<nav id="TranscriptsListOfYears">
<ul class="card-columns" style="column-count: 2;">
<ul class="card-columns" style="column-count: 2!important;">
{{ range where $.Page.Site.Pages.ByDate "Layout" "transcript-index" }}
{{ if eq .Params.topic "index" }}
<li>
Expand Down

0 comments on commit 143a9dc

Please sign in to comment.