mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
fix(webapp): fix layout break and hidden group name appearance (#8538)
Fixes long comment overflow. There is some underlying problem with flex box and overflows. A better solution could be to use a grid, but this was the fastest I would come up with. Fixes hidden group name appearance
This commit is contained in:
parent
ce1844e521
commit
4e4eff8dc9
@ -114,5 +114,6 @@ export default {
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
gap: $space-small;
|
||||
--invitation-column-max-width: 75%;
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -131,6 +131,7 @@ export default {
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
gap: $space-xx-small;
|
||||
max-width: var(--invitation-column-max-width, 100%);
|
||||
}
|
||||
|
||||
.code {
|
||||
|
||||
@ -8,8 +8,8 @@
|
||||
@invalidate-invite-code="invalidateInviteCode"
|
||||
:inviteCodes="group.inviteCodes"
|
||||
:copy-message="
|
||||
group.type === 'hidden'
|
||||
? $T('invite-codes.invite-link-message-hidden-group', {
|
||||
group.groupType === 'hidden'
|
||||
? $t('invite-codes.invite-link-message-hidden-group', {
|
||||
network: $env.NETWORK_NAME,
|
||||
})
|
||||
: $t('invite-codes.invite-link-message-group', {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user