Fixes last item in the list menu being blocked. (#5234)

This commit fixes an issue where the last item's menu on a list of files
that scrolls gets blocked by the floating add button.

The fix is simply add the same padding that we use for the responsive
view, since it works just fine in responsive.
master
Eduardo Reyes 7 years ago committed by Harshavardhana
parent 8efa82126b
commit 685afb6749
  1. 4
      browser/app/less/inc/file-explorer.less

@ -14,7 +14,7 @@
.fe-body {
@media(min-width: @screen-md-min) {
padding: 0 0 40px @fe-sidebar-width;
padding: 0 0 80px @fe-sidebar-width;
}
@media(max-width: @screen-sm-max) {
@ -79,7 +79,7 @@
text-align: center;
border: 0;
padding: 0;
span {
display: inline-block;
height: 100%;

Loading…
Cancel
Save