61 lines
995 B
CSS
61 lines
995 B
CSS
@media (max-width: 1024px) {
|
|
/* Mobile Only fix div hidden by bottom navigation bar of mobile browser when using height: 100vh */
|
|
#previewer .preview {
|
|
height: calc(100% - 4em) !important;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 736px) {
|
|
body {
|
|
padding-bottom: 5em;
|
|
}
|
|
#listing.list .item .size {
|
|
display: none;
|
|
}
|
|
#listing.list .item .name {
|
|
width: 60%;
|
|
}
|
|
#more {
|
|
display: inherit
|
|
}
|
|
|
|
body.rtl #dropdown {
|
|
right: unset;
|
|
left: 1em;
|
|
transform-origin: top left;
|
|
}
|
|
|
|
header img {
|
|
display: none;
|
|
}
|
|
#listing {
|
|
margin-bottom: 5em;
|
|
}
|
|
|
|
body.rtl #listing {
|
|
margin-right: unset;
|
|
}
|
|
|
|
body.rtl .breadcrumbs {
|
|
transform: translateX(16em);
|
|
}
|
|
|
|
body.rtl #nav .wrapper {
|
|
margin-right: unset;
|
|
}
|
|
body.rtl .dashboard .row {
|
|
margin-right: unset;
|
|
}
|
|
#search.active {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 450px) {
|
|
#listing.list .item .modified {
|
|
display: none;
|
|
}
|
|
#listing.list .item .name {
|
|
width: 100%;
|
|
}
|
|
} |