mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
24 lines
422 B
SCSS
24 lines
422 B
SCSS
|
|
// Globals
|
|
// --------------------------------------------------
|
|
|
|
|
|
[ion-app] {
|
|
|
|
-webkit-user-drag: none;
|
|
-ms-content-zooming: none;
|
|
|
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
|
|
|
-ms-touch-action: manipulation;
|
|
touch-action: manipulation;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
font-smoothing: antialiased;
|
|
text-rendering: optimizeLegibility;
|
|
|
|
-webkit-text-size-adjust: none;
|
|
text-size-adjust: none;
|
|
|
|
}
|