Skip to content

Commit 2dfd597

Browse files
committed
🐛 fix scrollbar issues in firefox
1 parent 1c90c04 commit 2dfd597

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

app/styles/core-ui/History.styl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@
6161

6262
.column-content {
6363
absolute(left right bottom 0 top $header-height);
64-
overflow: scroll;
64+
overflow: auto;
6565
}
6666
}
6767

6868

6969
#git-log-table, #git-graph-column {
7070
flex-basis: 0;
71-
overflow: scroll;
71+
overflow: auto;
7272
}
7373

7474

@@ -77,7 +77,7 @@
7777
.git-logs-view {
7878
scrollBar();
7979
height: 100%;
80-
overflow-y: scroll;
80+
overflow-y: auto;
8181

8282
.git-logs-table {
8383
position: relative;

app/styles/core-ui/Settings.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
.settings-content-container {
5858
padding: 0 $padding-lr 10px;
5959
flex-grow: 1;
60-
overflow: scroll;
60+
overflow: auto;
6161
}
6262
.settings-content-controls {
6363
flex-grow: 0;

app/styles/core-ui/Tab.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ $tab-control-width = $tab-height*0.5;
3838
display: flex;
3939
height: 100%;
4040
align-items: flex-end;
41-
overflow-x: scroll;
41+
overflow-x: auto;
4242
&::-webkit-scrollbar {display: none;}
4343
}
4444

app/styles/core-ui/Term.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@
229229

230230
.term_scrollbar-v {
231231
overflow-x: hidden;
232-
overflow-y: scroll;
232+
overflow-y: auto;
233233
top: 0;
234234
cursor: default;
235235
}

app/styles/core-ui/Workspace.styl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
background-color: white;
1010
}
1111

12-
overflow: scroll;
12+
overflow: auto;
1313
}
1414

1515
.workspace {
@@ -72,4 +72,4 @@
7272
.creating-workspace-process {
7373
opacity: 0.7;
7474

75-
}
75+
}

0 commit comments

Comments
 (0)