Skip to content

Commit

Permalink
Ensure resource table ends before filter/tag bar
Browse files Browse the repository at this point in the history
A wide resource table in combination with the sidebar for filter/tags made the table slip under the sidebar. As a consequence it would hide the edit/delete buttons and even some attributes.

This commit enforces the width of the resource-table-wrapper can always only be as wide as it doesn't slip under the library_sidebar.
  • Loading branch information
robinboening committed Aug 7, 2021
1 parent 388298e commit a72e9df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/assets/stylesheets/alchemy/archive.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
padding-bottom: 60px;

&.with_tag_filter {
padding-right: 242px;
width: calc(100% - 235px);
overflow-x: auto;
}
}

Expand Down

0 comments on commit a72e9df

Please sign in to comment.