DRVDOC-1129: Clicking on editor margins should focus editor
[ProtonMail-WebClient.git] / packages / styles / scss / base / _viewport.scss
blob142abd8f0e8569170996123248d49f81925d875c
1 /* stylelint-disable at-rule-no-vendor-prefix */
3 /* fix viewport for Win8 (snap mode) and preparing day
4  * when viewport will be supported by all render engines
5  *
6  * Examples: http://dev.opera.com/articles/view/an-introduction-to-meta-viewport-and-viewport/
7  * width=device-width => width: device-width;
8  * height=device-height => height: device-height;
9  * initial-scale=2 => zoom: 2;
10  * maximum-scale=2 => max-zoom: 2;
11  * minimum-scale=0.5 => min-zoom: 0.5;
12  * user-scalable=no => user-zoom: fixed;
13  *
14  * for Win8 snap mode => only width: device-width; works for the moment
15  */
17 @-webkit-viewport {
18         inline-size: device-width;
21 @-moz-viewport {
22         inline-size: device-width;
25 @-ms-viewport {
26         inline-size: device-width;
29 @-o-viewport {
30         inline-size: device-width;
33 @viewport {
34         inline-size: device-width;