Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: messages containing an invitation doesnt horizontally scroll #10162

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/components/Message.vue
Original file line number Diff line number Diff line change
Expand Up @@ -213,4 +213,12 @@ export default {
}
}
}
@media screen and (max-width: 500px)
:deep(.tbody) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:deep(tbody)*

width: 70%;
display: flex;
padding-left: 0;
overflow: scroll;
}
}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is supposed to work, if i can only find the right file where the tbody is coming from

</style>
4 changes: 2 additions & 2 deletions src/components/imip/EventData.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

<template>
<div class="event-data">
<h2 class="event-data__heading">
<h6 class="event-data__heading">
{{ title }}
</h2>
</h6>

<div class="event-data__row event-data__row--date">
<CalendarIcon class="event-data__row__icon" :size="16" />
Expand Down
Loading