oupala / apaxy

a simple, customisable theme for your apache directory listing
https://oupala.github.io/apaxy/
GNU General Public License v3.0
1.86k stars 256 forks source link

Remove padding from mobile client #29

Closed dandaka closed 5 years ago

dandaka commented 10 years ago

Sorry, I can't do pull requests yet. But here's quick workaround to remove padding from mobile screens.

body {
    padding:0;
    -webkit-backface-visibility:hidden;
}

@media (min-width: 768px) {
    body {
        padding:20px;
        -webkit-backface-visibility:hidden;
    }
}
guilhermevini commented 7 years ago

I keep the original style and increment only mobile rules.

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    .indexcollastmod { display: none; }
    .wrapper { max-width: 100%; }
}
oupala commented 5 years ago

I believe this issue has been fixed and will be available in the next release.