Skip to content
Merged
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
5 changes: 3 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -457,9 +457,10 @@ export default {
.content {
height: 100%;

//FIXME: remove this v-deep once nextcloud vue v4 is adopted
::v-deep .app-navigation-toggle {
top: 10px;
right: -10px;
top: 8px;
right: -8px;
border-radius: var(--border-radius-pill);
}

Expand Down
2 changes: 1 addition & 1 deletion src/assets/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ $message-utils-width: 100px;
//message form max height
$message-form-max-height: 180px;

$top-bar-height: 60px;
$top-bar-height: 61px;

$color-call-background: #444444;
$color-guests-avatar: #ffffff;
Expand Down
3 changes: 1 addition & 2 deletions src/components/ChatView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,10 @@ export default {
<style lang="scss" scoped>
.chatView {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
flex-grow: 1;
position: absolute;
min-height: 0;
}

.dragover {
Expand Down
2 changes: 0 additions & 2 deletions src/components/NewMessageForm/NewMessageForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -443,8 +443,6 @@ export default {
@import '../../assets/buttons';

.wrapper {
position: sticky;
Copy link
Member

Choose a reason for hiding this comment

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

intentional extra change ?

Copy link
Member Author

Choose a reason for hiding this comment

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

Yep

bottom: 0;
display: flex;
justify-content: center;
padding: 12px 0;
Expand Down
1 change: 1 addition & 0 deletions src/components/RightSidebar/RightSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ export default {
.app-sidebar-tabs__content #tab-chat {
/* Remove padding to maximize the space for the chat view. */
padding: 0;
height: 100%;
}

</style>
Loading