Skip to content

Commit

Permalink
fix: Fix text rendering glitch on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
davidchin committed Jan 30, 2017
1 parent b197bad commit d809046
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion example/index.html
@@ -1,7 +1,8 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="UTF-8"/> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./example.css"> <link rel="stylesheet" href="./example.css">
</head> </head>


Expand Down
10 changes: 6 additions & 4 deletions example/scss/index.scss
@@ -1,10 +1,12 @@
.form { .form {
height: 200px;
margin: 0 auto; margin: 0 auto;
padding-top: 100px; padding: 100px 30px 0;
width: 60%;
@media (min-width: 800px) {
max-width: 60%;
}
} }


.input-range { .input-range {
margin-bottom: 10rem; margin-bottom: 160px;
} }
1 change: 1 addition & 0 deletions src/scss/input-range/_input-range-slider.scss
Expand Up @@ -31,5 +31,6 @@
} }


.input-range__slider-container { .input-range__slider-container {
transform: translateZ(0px);
transition: $input-range-slider-container-transition; transition: $input-range-slider-container-transition;
} }

0 comments on commit d809046

Please sign in to comment.