Skip to content

Commit

Permalink
🐞Fix: Fixed filter height to display all the language tags (#1268)
Browse files Browse the repository at this point in the history
* Fixed filter height

Signed-off-by: Vividh Pandey <vividh.pandey.13@gmail.com>

* Fixed dynamic height

Signed-off-by: Vividh Pandey <vividh.pandey.13@gmail.com>

---------

Signed-off-by: Vividh Pandey <vividh.pandey.13@gmail.com>
  • Loading branch information
VividhPandey003 authored Jan 9, 2024
1 parent 82ddfb1 commit 9dab109
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/app/src/people/widgetViews/BountyHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ const MobileFilterCount = styled.div<styledProps>`

const EuiPopOverCheckboxLeft = styled.div<styledProps>`
width: 147px;
height: 312px;
height: auto;
padding: 15px 18px;
border-right: 1px solid ${(p: any) => p.color && p.color.grayish.G700};
user-select: none;
Expand Down Expand Up @@ -256,7 +256,7 @@ const EuiPopOverCheckboxLeft = styled.div<styledProps>`
const PopOverRightBox = styled.div<styledProps>`
display: flex;
flex-direction: column;
max-height: 304px;
max-height: auto;
padding: 15px 0px 20px 21px;
.rightBoxHeading {
font-family: 'Barlow';
Expand All @@ -272,7 +272,7 @@ const PopOverRightBox = styled.div<styledProps>`
const EuiPopOverCheckboxRight = styled.div<styledProps>`
min-width: 285px;
max-width: 285px;
height: 240px;
height: auto;
user-select: none;
&.CheckboxOuter > div {
Expand Down

0 comments on commit 9dab109

Please sign in to comment.