Skip to content

Commit 28aa9db

Browse files
committed
Chore: Update contact us form style
1 parent 86592e4 commit 28aa9db

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/app/contact-us/styles.tsx

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,32 +25,38 @@ export const FormularyWrapper = styled.form`
2525
display: flex;
2626
flex-direction: column;
2727
gap: 1rem;
28-
width: 70%;
28+
width: 100%;
29+
max-width: 700px;
30+
padding: 0.5rem;
31+
box-sizing: border-box;
2932
`;
3033

3134
export const FormularyLabel = styled.label`
3235
display: flex;
33-
gap: 1rem;
36+
gap: 0.5rem;
3437
align-items: left;
3538
flex-direction: column;
3639
`;
3740

3841
export const FormularyInput = styled.input`
3942
padding: 0.5rem;
40-
border: 1px solid ${({ theme }) => theme.colors.black};
43+
border: 1px solid ${({ theme }) => theme.colors.black}30;
4144
border-radius: 4px;
4245
font-size: 1rem;
46+
box-sizing: border-box;
4347
width: 100%;
4448
min-height: 25px;
4549
`;
4650

4751
export const FormularyTextArea = styled.textarea`
4852
padding: 0.5rem;
49-
border: 1px solid ${({ theme }) => theme.colors.black};
53+
box-sizing: border-box;
54+
border: 1px solid ${({ theme }) => theme.colors.black}30;
5055
border-radius: 4px;
5156
font-size: 1rem;
5257
width: 100%;
5358
min-height: 200px;
59+
resize: vertical;
5460
`;
5561

5662
export const DinamicButton = styled.button<{ isFormValid: boolean }>`

0 commit comments

Comments
 (0)