File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
src/apps/copilots/src/pages/copilot-request-form Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -331,6 +331,7 @@ const CopilotRequestForm: FC<{}> = () => {
331
331
customRadius
332
332
noCaps
333
333
leftAlignText
334
+ textWrap
334
335
/>
335
336
{ formErrors . complexity && (
336
337
< p className = { styles . error } >
Original file line number Diff line number Diff line change @@ -42,6 +42,29 @@ $gradient: linear-gradient(
42
42
margin-bottom : 1rem ;
43
43
}
44
44
45
+ @media (max-width : 768px ) {
46
+ .formRadioBtn {
47
+ display : grid ;
48
+ align-items : start ;
49
+ grid-template-columns : 1fr 1fr ;
50
+ gap : 1rem ;
51
+ }
52
+
53
+ .formRadioBtn > * :nth-child (2 ),
54
+ .formRadioBtn > * :nth-child (3 ) {
55
+ grid-column : 2 ;
56
+ }
57
+
58
+ .formRadioBtn > * :nth-child (1 ) {
59
+ grid-column : 1 ;
60
+ grid-row : 1 / span 2 ;
61
+ }
62
+
63
+ .formRadioBtn > * :nth-child (3 ) {
64
+ grid-row : 2 ;
65
+ }
66
+ }
67
+
45
68
.complexity {
46
69
display : flex ;
47
70
flex-direction : column ;
You can’t perform that action at this time.
0 commit comments