This repository was archived by the owner on Jan 6, 2025. It is now read-only.
File tree 1 file changed +6
-6
lines changed
src/lib/core/breakpoints/data
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 9
9
import { BreakPoint } from '../break-point' ;
10
10
11
11
/* tslint:disable */
12
- const HANDSET_PORTRAIT = '(orientations : portrait) and (max-width: 599px)' ;
13
- const HANDSET_LANDSCAPE = '(orientations : landscape) and (max-width: 959px)' ;
12
+ const HANDSET_PORTRAIT = '(orientation : portrait) and (max-width: 599px)' ;
13
+ const HANDSET_LANDSCAPE = '(orientation : landscape) and (max-width: 959px)' ;
14
14
15
- const TABLET_LANDSCAPE = '(orientations : landscape) and (min-width: 960px) and (max-width: 1279px)' ;
16
- const TABLET_PORTRAIT = '(orientations : portrait) and (min-width: 600px) and (max-width: 839px)' ;
15
+ const TABLET_LANDSCAPE = '(orientation : landscape) and (min-width: 960px) and (max-width: 1279px)' ;
16
+ const TABLET_PORTRAIT = '(orientation : portrait) and (min-width: 600px) and (max-width: 839px)' ;
17
17
18
- const WEB_PORTRAIT = '(orientations : portrait) and (min-width: 840px)' ;
19
- const WEB_LANDSCAPE = '(orientations : landscape) and (min-width: 1280px)' ;
18
+ const WEB_PORTRAIT = '(orientation : portrait) and (min-width: 840px)' ;
19
+ const WEB_LANDSCAPE = '(orientation : landscape) and (min-width: 1280px)' ;
20
20
21
21
export const ScreenTypes = {
22
22
'HANDSET' : `${ HANDSET_PORTRAIT } , ${ HANDSET_LANDSCAPE } ` ,
You can’t perform that action at this time.
0 commit comments