Skip to content

Commit

Permalink
Merge pull request #734 from dhruvmisra/fix/labyrinthButtons
Browse files Browse the repository at this point in the history
[Issue #733 fix] Made Labyrinth font buttons visible on small screens
  • Loading branch information
llaske committed Mar 27, 2020
2 parents 81eff5e + 88bb95b commit 524a82c
Showing 1 changed file with 20 additions and 16 deletions.
36 changes: 20 additions & 16 deletions activities/LabyrinthJS.activity/css/activity.css
Original file line number Diff line number Diff line change
Expand Up @@ -354,25 +354,13 @@ body {
visibility: hidden;
width: 0px;
}

#sub-toolbar #fontminus-button {
visibility: hidden;
}

#sub-toolbar #font-button {
visibility: hidden;
}

#fontpalette {
left: 0px !important;
}

#sub-toolbar #fontplus-button {
visibility: hidden;
}
left: initial !important;
right: 0px !important;
}
}

@media screen and (max-width: 810px) {
@media screen and (max-width: 820px) {
.search-field-input {
width: 120px;
}
Expand All @@ -394,6 +382,22 @@ body {
visibility: hidden;
width: 0px;
}

#sub-toolbar #fontminus-button {
display: none;
}

#sub-toolbar #font-button {
display: none;
}

#fontpalette {
left: 0px !important;
}

#sub-toolbar #fontplus-button {
display: none;
}
}

@media screen and (max-width: 682px) {
Expand Down

0 comments on commit 524a82c

Please sign in to comment.