Skip to content

Commit 13f2b65

Browse files
committed
fix(rendered): Double scrollbar
1 parent 297fd3b commit 13f2b65

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

packages/uhk-web/src/app/app.component.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
}
3333

3434
main-app {
35-
min-height: 100vh;
35+
min-height: 100%;
36+
height: 100%;
3637
width: 100%;
3738
display: block;
3839
position: relative;

packages/uhk-web/src/app/components/device/configuration/device-configuration.component.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
overflow-y: auto;
33
display: block;
44
height: 100%;
5+
width: 100%;
56

67
p {
78
margin: 1.5rem 0;

packages/uhk-web/src/app/components/device/firmware/device-firmware.component.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
:host {
22
overflow-y: auto;
33
display: block;
4-
height: 100%;
4+
height: 100vh;
5+
min-height: 100%;
6+
width: 100%;
57
}
68

79
.flex-container {

packages/uhk-web/src/app/components/device/mouse-speed/mouse-speed.component.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
overflow-y: auto;
33
display: block;
44
height: 100%;
5+
width: 100%;
6+
57
}

packages/uhk-web/src/styles.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ html, body {
2929
}
3030

3131
.main-content {
32-
height: 100vh;
32+
height: 100%;
3333
}
3434

3535
.main-page-content {
3636
margin-left: 250px;
3737
overflow-x: hidden;
38-
height: 99%;
38+
min-height: 100%;
3939
}
4040

4141
.select2 {

0 commit comments

Comments
 (0)