Skip to content

Commit

Permalink
responsive: Fix horizontal scrolling in mobile (#1746)
Browse files Browse the repository at this point in the history
* fix horizontal scrolling
  • Loading branch information
Pratyush1197 authored and mekarpeles committed Dec 21, 2018
1 parent 7f7d4e2 commit 9b2890d
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions static/css/legacy.less
Original file line number Diff line number Diff line change
Expand Up @@ -2882,13 +2882,20 @@ div.measurements {
}

/* PAGE HISTORY */

.historyPager {
text-align: center;
margin: 20px 0;
width: 848px;
@media screen and (max-width: @width-breakpoint-desktop){
.historyPager {
text-align: center;
margin: 20px 0;
width: 848px;
}
}
@media screen and (max-width: @width-breakpoint-tablet){
.historyPager {
text-align:center;
margin: 20px 0;
width: 100%;
}
}

div#admin {
&Twitter {
width: 300px;
Expand Down

0 comments on commit 9b2890d

Please sign in to comment.