fix: ensure we are loading events properly during fsdb scan
fix: various styling issues on smaller screens fix: map z-index
This commit is contained in:
parent
873773bc91
commit
2d12104875
10 changed files with 126 additions and 38 deletions
|
|
@ -11,6 +11,7 @@
|
|||
grid-template-areas:
|
||||
"expander preview info"
|
||||
"expander preview subject"
|
||||
". . reactions"
|
||||
". . content"
|
||||
". . newpost"
|
||||
". . replies";
|
||||
|
|
@ -111,6 +112,10 @@
|
|||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.post-container .reactions-container {
|
||||
grid-area: reactions;
|
||||
}
|
||||
|
||||
.post-container button[commandfor="eventactionspopover"] {
|
||||
position: absolute;
|
||||
bottom: 0.25rem;
|
||||
|
|
@ -125,6 +130,35 @@
|
|||
.post-container .replies-container {
|
||||
grid-area: replies;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 480px) {
|
||||
.post-container {
|
||||
grid-template-rows: 120px auto auto auto 1fr;
|
||||
grid-template-columns: auto 1fr;
|
||||
grid-template-areas:
|
||||
". preview"
|
||||
"expander info"
|
||||
"expander subject"
|
||||
". reactions"
|
||||
". content"
|
||||
". newpost"
|
||||
". replies";
|
||||
|
||||
max-height: 16rem;
|
||||
}
|
||||
|
||||
.post-container .media-preview-container {
|
||||
overflow: hidden;
|
||||
display: grid;
|
||||
align-content: center;
|
||||
width: 100%;
|
||||
height: 7rem;
|
||||
}
|
||||
|
||||
.post-container .media-preview-container img {
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<input
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue