Skip to content

Commit

Permalink
fix: width changing of right bar when adding new queries
Browse files Browse the repository at this point in the history
  • Loading branch information
vikrantgupta25 committed Jun 10, 2024
1 parent 2d0a8b8 commit f2dc062
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions frontend/src/container/NewWidget/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ export const Container = styled.div`

export const RightContainerWrapper = styled(Col)`
&&& {
min-width: 330px;
overflow-y: auto;
max-width: 400px;
width: 30%;
overflow-y: auto;
}
&::-webkit-scrollbar {
width: 0rem;
Expand All @@ -26,7 +25,7 @@ interface LeftContainerWrapperProps {

export const LeftContainerWrapper = styled(Col)<LeftContainerWrapperProps>`
&&& {
min-width: 70%;
width: 100%;
overflow-y: auto;
border-right: ${({ isDarkMode }): string =>
isDarkMode
Expand Down

0 comments on commit f2dc062

Please sign in to comment.