Skip to content

Commit

Permalink
Fix input highscore mobile positioning.
Browse files Browse the repository at this point in the history
  • Loading branch information
FranciscoKnebel committed Feb 19, 2018
1 parent 85fac54 commit 941b9e9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
8 changes: 8 additions & 0 deletions docs/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ body {
#screen div.wrapper {
position: absolute;
z-index: 2;
width: 90%;
}

.ui.input, .ui.input > input {
Expand Down Expand Up @@ -65,6 +66,13 @@ body {
box-shadow: none;
}

@media only screen and (max-width: 480px) {
.ui.input > input {
width: 60%;
padding: .5em;
}
}

.ui.input, .ui.input > input {
position: relative;
font-weight: 400;
Expand Down
2 changes: 1 addition & 1 deletion docs/js/app.min.js

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ body {
#screen div.wrapper {
position: absolute;
z-index: 2;
width: 90%;
}

.ui.input, .ui.input > input {
Expand Down Expand Up @@ -65,6 +66,13 @@ body {
box-shadow: none;
}

@media only screen and (max-width: 480px) {
.ui.input > input {
width: 60%;
padding: .5em;
}
}

.ui.input, .ui.input > input {
position: relative;
font-weight: 400;
Expand Down

0 comments on commit 941b9e9

Please sign in to comment.