Space them like columns with separation for current collection

This commit is contained in:
Jason Zimdars
2025-09-22 14:27:58 -05:00
parent b22d7ec05a
commit 1ea9fa9dd3
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -64,7 +64,7 @@
.header__title {
font-style: oblique;
line-height: 1.2;
line-height: 1;
text-align: start;
text-transform: uppercase;
}
+2 -2
View File
@@ -3,13 +3,13 @@
<div class="card-columns" data-controller="collapsible-columns" data-collapsible-columns-collapsed-class="is-collapsed">
<div class="title-nav">
<h1 class="header__title overflow-ellipsis">
<h1 class="header__title overflow-ellipsis margin-block-end">
<%= @user_filtering.selected_collections_label %>
</h1>
<% user_filtering.collections.limit(5).last(4).each do |collection| %>
<div class="header__title overflow-ellipsis">
<%= link_to collection.name, cards_path(collection_ids: [ collection ]), class: "txt-subtle txt-normal" %>
<%= link_to collection.name, cards_path(collection_ids: [ collection ]), class: "btn btn--plain font-weight-black txt-subtle txt-normal" %>
</div>
<% end %>
</div>