19 lines
246 B
SCSS
19 lines
246 B
SCSS
//
|
|
// general.scss
|
|
//
|
|
|
|
html {
|
|
position: relative;
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
// Fix event bubbling on iOS devices
|
|
@supports (-webkit-overflow-scrolling: touch) {
|
|
body {
|
|
cursor: pointer;
|
|
}
|
|
} |