Skip to content

Commit

Permalink
fix(css): settings container height (Fixes #2226 PR #2229)
Browse files Browse the repository at this point in the history
  • Loading branch information
arthur-lemeur committed May 17, 2024
1 parent bdb7ad7 commit 0141f2f
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/renderer/assets/styles/components/settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@ $setting_color: var(--color-blue);
accent-color: $setting_color;
}

&:not(:has(.guidedTour_content)) {
@media screen and (height <= 700px) {
height: 450px;
}
}

.section {
padding-bottom: 15px ;
border-bottom: 2px solid var(--color-extralight-grey);
Expand Down Expand Up @@ -90,6 +84,14 @@ $setting_color: var(--color-blue);
}
}

.modal_dialog_reader .settings_container {
&:not(:has(.guidedTour_content)) {
@media screen and (height <= 700px) {
height: 450px;
}
}
}

.settings_tabslist {
display: flex;
flex-direction: column;
Expand Down

0 comments on commit 0141f2f

Please sign in to comment.