File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 11import styled from 'styled-components' ;
2-
2+ import { breakpoints } from '../../styles/theme' ;
33export const UploadBox = styled . div `
44 width: 100%;
55 padding: 1.5rem;
@@ -96,4 +96,9 @@ export const ActionButton = styled.button<{ $primary?: boolean }>`
9696 opacity: ${ ( props ) => ( props . disabled ? 0.5 : 1 ) } ;
9797 margin-bottom: 6.25rem;
9898 font-size: 1rem;
99+ white-space: nowrap;
100+ @media (max-width: ${ breakpoints . mobile } ) {
101+ padding: 0.8rem 1.5rem;
102+ font-size: 0.8rem;
103+ }
99104` ;
Original file line number Diff line number Diff line change 11import styled from 'styled-components' ;
2-
2+ import { breakpoints } from '../../styles/theme' ;
33export const CloseButton = styled . div `
44 width: 100%;
55 display: flex;
@@ -133,14 +133,17 @@ export const RecommendSection = styled.section`
133133 color: gray;
134134 }
135135` ;
136-
137136export const CustomRadio = styled . label `
138137 display: inline-flex;
139138 align-items: center;
140139 cursor: pointer;
141140 margin-right: 1rem;
142141 gap: 0.5rem;
143-
142+ white-space: nowrap;
143+ @media (max-width: ${ breakpoints . mobile } ) {
144+ gap: 0.2rem;
145+ font-size: 0.9rem;
146+ }
144147 input[type='radio'] {
145148 appearance: none;
146149 -webkit-appearance: none;
You can’t perform that action at this time.
0 commit comments