Skip to content

Commit

Permalink
Merge pull request stakwork#783 from jordan-ae/bounty-modal-width
Browse files Browse the repository at this point in the history
  • Loading branch information
humansinstitute authored Dec 17, 2024
2 parents 8022de2 + 7374383 commit a8ba881
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion src/components/form/bounty/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,10 @@ function Form(props: FormProps) {
flexDirection: 'column',
alignItems: 'center',
color: '#3C3D3F',
minWidth: '650px'
width: '100%',
padding: '0px 40px 0px 40px',
paddingTop: '0px',
height: '100vh'
}}
>
{/* mapping each bounty creation step to the appropriate
Expand Down
2 changes: 1 addition & 1 deletion src/components/form/inputs/TextAreaInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { FieldEnv, FieldTextArea, Note } from './index';
const StyleOnText = {
'Description *': {
height: '172px',
width: '292px'
width: '100%'
},
Deliverables: {
height: '135px',
Expand Down
2 changes: 1 addition & 1 deletion src/people/main/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ interface BProps {
export const B = styled.div<BProps>`
display: ${(p: any) => (p.hide ? 'none' : 'flex')};
justify-content: ${(p: any) => (p.hide ? 'none' : 'center')};
height: 100%;
height: 100vh;
width: 100%;
overflow-y: auto;
box-sizing: border-box;
Expand Down

0 comments on commit a8ba881

Please sign in to comment.