Skip to content

Commit

Permalink
fix: hide quickfilters where the whole text isnt visible
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardBrunton committed Oct 3, 2024
1 parent 5e90513 commit 056616d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/filter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@equinor/workspace-filter",
"version": "4.0.4",
"version": "4.0.5",
"type": "module",
"sideEffects": false,
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,16 @@ export const StyledCompactFilterWrapper = styled.div<{ isExpanded: boolean }>`
`;

export const StyledQuickFilterGroupsLayout = styled.div`
display: grid;
display: flex;
width: 100%;
grid-template-columns: repeat(auto-fit, minmax(max-content, 100px));
grid-template-rows: 48px;
justify-content: flex-end;
height: 48px;
gap: 20px;
align-items: center;
padding: 12px 0;
flex-wrap: wrap;
overflow-y: hidden;
box-sizing: border-box;
`;

export const StyledWrapper = styled.div`
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace-fusion/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@equinor/workspace-fusion",
"version": "9.0.15",
"version": "9.0.16",
"type": "module",
"sideEffects": false,
"license": "MIT",
Expand Down

0 comments on commit 056616d

Please sign in to comment.