mirror of
https://github.com/RetroShare/RSNewWebUI.git
synced 2026-09-12 19:50:04 +05:00
Fixed the phone-only channel post overlap
This commit is contained in:
parent
569de96a3a
commit
d42da25928
@ -586,11 +586,6 @@ const ChannelView = () => {
|
||||
{
|
||||
style: {
|
||||
display: plist[key].isSearched ? 'flex' : 'none', // for search
|
||||
height: '240px',
|
||||
minHeight: '0',
|
||||
overflow: 'hidden',
|
||||
flexDirection: 'column',
|
||||
alignSelf: 'start',
|
||||
},
|
||||
onclick: () => {
|
||||
m.route.set('/channels/:tab/:mGroupId/:mMsgId', {
|
||||
|
||||
@ -394,7 +394,14 @@ table {
|
||||
/* Keep image and generated-thumbnail cards the same size instead of stretching
|
||||
* a sparse grid row to the full height of the Posts panel. */
|
||||
.posts-container { align-content: start; grid-auto-rows: 240px; }
|
||||
.posts-container-card { position: relative; height: 240px; min-height: 0; overflow: hidden; }
|
||||
.posts-container-card {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-self: start;
|
||||
height: 240px;
|
||||
min-height: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.posts-container-card > img,
|
||||
.posts-container-card > .channel-post__placeholder { min-height: 0; }
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user