Skip to content

Commit

Permalink
fix: settings and routing menus position: fixed instead of absolute
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon committed Nov 25, 2019
1 parent 16cc5d3 commit 591877e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/assets/css/ChannelRouteSettings.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.channel-route-body {
position: absolute;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
Expand Down
2 changes: 1 addition & 1 deletion src/assets/css/Settings.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.settings-body {
position: absolute;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
Expand Down
2 changes: 1 addition & 1 deletion src/reducers/fadersReducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const defaultFadersReducerState = (numberOfFaders: number) => {
high: 0.75,
threshold: 0.75,
ratio: 0.75,
monitor: (index + 1),
monitor: (index + 1), // route fader - aux 1:1 as default
showChannel: true,
snapOn: [],
});
Expand Down

0 comments on commit 591877e

Please sign in to comment.