Skip to content

Commit

Permalink
fix: css - "Load mixer preset" was not centered
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon authored and olzzon committed Jun 8, 2020
1 parent 36bad2e commit 0dac1e7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions client/components/RoutingStorage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,18 +149,20 @@ class Storage extends React.PureComponent<IStorageProps & Store> {
<h3>LOAD ROUTING :</h3>
<this.ListSnapshotFiles />
{window.mixerPresetList.length > 0 ? (
<div>
<React.Fragment>
<br />
<hr />
<h3>LOAD MIXER PRESET :</h3>
<this.ListPresetFiles />
</div>
</React.Fragment>
) : null}
{window.ccgFileList.length > 0 ? (
<div>
<React.Fragment>
<br />
<hr />
<h3>LOAD CASPARCG :</h3>
<this.ListCcgFiles />
</div>
</React.Fragment>
) : null}
</div>
)
Expand Down

0 comments on commit 0dac1e7

Please sign in to comment.