mirror of
https://github.com/friendica/friendica
synced 2024-11-18 11:03:42 +00:00
fix max-height for screens bigger than 768px
This commit is contained in:
parent
80f5a026be
commit
4dfdbeba54
1 changed files with 10 additions and 0 deletions
|
@ -1328,6 +1328,11 @@ section #jotOpen {
|
|||
max-height: calc(100vh - 210px);
|
||||
line-height: 1.3;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.fbrowser .folders ul {
|
||||
max-height: calc(100vh - 255px);
|
||||
}
|
||||
}
|
||||
.fbrowser .folders li {
|
||||
padding-left: 20px;
|
||||
padding-right: 10px;
|
||||
|
@ -1353,6 +1358,11 @@ section #jotOpen {
|
|||
overflow-y: auto;
|
||||
max-height: calc(100vh - 175px);
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.fbrowser .fbrowser-content-container {
|
||||
max-height: calc(100vh - 220px);
|
||||
}
|
||||
}
|
||||
.fbrowser.image .photo-album-image-wrapper img {
|
||||
border: 1px solid #ddd;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue