We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 735362d commit 53682feCopy full SHA for 53682fe
src/style/Form.tsx
@@ -1,5 +1,5 @@
1
import styled from 'styled-components'
2
-import { wideBreakpoint } from './settings'
+import { wideBreakpoint, mobileBreakpoint } from './settings'
3
4
export const Button = styled.button`
5
background-color: transparent;
@@ -38,6 +38,9 @@ export const DateInput = styled(Input)`
38
`
39
export const NumberInput = styled(Input)`
40
width: 30px;
41
+ @media (min-width: ${mobileBreakpoint}) {
42
+ width: 60px;
43
+ }
44
45
46
export const DateEditor = styled.div`
0 commit comments