Skip to content

Commit

Permalink
fix: Avoid duplicate scrollbars
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <[email protected]>
  • Loading branch information
juliushaertl committed Aug 29, 2024
1 parent a4f2a99 commit fb54b81
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 1 addition & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,7 @@ export default {
.modal__card {
width: 100%;
min-width: 100%;
height: 100vh;
max-height: calc(100vh - 120px);
height: calc(100% - 20px);
overflow: hidden;
}
Expand Down
5 changes: 5 additions & 0 deletions src/components/card/CardSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,11 @@ section.app-sidebar__tab--active {
max-height: 90%;
}
.app-sidebar__tab {
min-height: calc(100% - 20px);
max-height: calc(100% - 20px);
}
// FIXME: test
&:deep {
.app-sidebar-header {
Expand Down

0 comments on commit fb54b81

Please sign in to comment.