Skip to content

Commit

Permalink
increase the width of the display bounty modal
Browse files Browse the repository at this point in the history
  • Loading branch information
MahtabBukhari committed Dec 20, 2024
1 parent a065720 commit db344e3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions src/pages/tickets/TicketModalPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,8 @@ export const TicketModalPage = observer(({ setConnectPerson }: Props) => {
background: color.pureWhite,
...focusedDesktopModalStyles,
maxHeight: '100vh',
minWidth: '55vw',
borderRadius: 0,
zIndex: 20
}}
style={{
Expand Down
7 changes: 3 additions & 4 deletions src/people/widgetViews/summaries/wantedSummaries/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,7 @@ export const Creator = styled.div`
`;

export const NormalUser = styled.div`
min-width: 892px;
max-width: 892px;
min-width: 50vw;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
Expand All @@ -145,8 +144,7 @@ export const NormalUser = styled.div`
`;

export const CreatorDescription = styled.div<styleProps>`
min-width: 600px;
max-width: 600px;
min-width: 38vw;
overflow: auto;
height: 100vh;
border-right: ${(p: any) =>
Expand Down Expand Up @@ -186,6 +184,7 @@ export const TitleBox = styled.div<colorProps>`
`;

export const DescriptionBox = styled.div<colorProps>`
min-width: 30vw;
padding-right: 44px;
margin-right: 5px;
max-height: calc(100% - 160px);
Expand Down

0 comments on commit db344e3

Please sign in to comment.