Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,11 @@

&__table-header {
display: grid;
grid-template: 'title clear-search-btn' 'subtitle subtitle';
justify-content: start;
grid-template:
'title clear-search-btn .' auto
'subtitle subtitle subtitle' auto
'search_tags search_tags search_tags' auto
/ max-content auto 1fr;
}

&__table-tile {
Expand All @@ -96,6 +99,13 @@
font-size: $ibexa-text-font-size-medium;
}

&__search-tags {
grid-area: search_tags;
display: flex;
flex-wrap: wrap;
gap: calculateRem(8px);
}

.c-content-table {
width: 100%;
}
Expand Down
Loading