File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -25,32 +25,38 @@ export const FormularyWrapper = styled.form`
25
25
display: flex;
26
26
flex-direction: column;
27
27
gap: 1rem;
28
- width: 70%;
28
+ width: 100%;
29
+ max-width: 700px;
30
+ padding: 0.5rem;
31
+ box-sizing: border-box;
29
32
` ;
30
33
31
34
export const FormularyLabel = styled . label `
32
35
display: flex;
33
- gap: 1rem ;
36
+ gap: 0.5rem ;
34
37
align-items: left;
35
38
flex-direction: column;
36
39
` ;
37
40
38
41
export const FormularyInput = styled . input `
39
42
padding: 0.5rem;
40
- border: 1px solid ${ ( { theme } ) => theme . colors . black } ;
43
+ border: 1px solid ${ ( { theme } ) => theme . colors . black } 30 ;
41
44
border-radius: 4px;
42
45
font-size: 1rem;
46
+ box-sizing: border-box;
43
47
width: 100%;
44
48
min-height: 25px;
45
49
` ;
46
50
47
51
export const FormularyTextArea = styled . textarea `
48
52
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;
50
55
border-radius: 4px;
51
56
font-size: 1rem;
52
57
width: 100%;
53
58
min-height: 200px;
59
+ resize: vertical;
54
60
` ;
55
61
56
62
export const DinamicButton = styled . button < { isFormValid : boolean } > `
You can’t perform that action at this time.
0 commit comments