Skip to content

Commit

Permalink
Updates #3496
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbrand committed Mar 7, 2025
1 parent 02836a3 commit 9547f51
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/plugins/muc-views/templates/muc-chatarea.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@ export default (el) => {
if (view_mode === 'overlayed') {
chat_area_classes = 'd-none d-md-flex col-s-10 col-md-8';
sidebar_classes = 'col-xs-12 col-s-2 col-md-4';
} else {
} else if (view_mode === 'fullscreen') {
chat_area_classes = 'd-none d-md-flex col-md-8 col-xl-10';
sidebar_classes = 'col-xs-12 col-md-4 col-xl-2';
} else if (view_mode === 'embedded') {
chat_area_classes = 'd-flex col-8';
sidebar_classes = 'col-4';
}

return html`
Expand Down

0 comments on commit 9547f51

Please sign in to comment.