mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 22:44:13 +08:00
19 lines
360 B
SCSS
19 lines
360 B
SCSS
|
|
html.plt-mobile ion-app {
|
|
user-select: none;
|
|
}
|
|
|
|
/**
|
|
* This works around a WebKit issue
|
|
* where user-select: none was causing
|
|
* contenteditable to not be selectable,
|
|
* even though inputs and textareas are selectable.
|
|
*/
|
|
html.plt-mobile ion-app [contenteditable] {
|
|
user-select: text;
|
|
}
|
|
|
|
ion-app.force-statusbar-padding {
|
|
--ion-safe-area-top: 20px;
|
|
}
|