mirror of
https://github.com/DevL0rd/SkyNX
synced 2024-11-22 19:13:12 +00:00
fixed settings panel layout
This commit is contained in:
parent
8c0867085f
commit
222ded9f52
2 changed files with 16 additions and 7 deletions
|
@ -216,9 +216,13 @@ textarea:focus, input:focus{
|
|||
height: calc(100% - 57px);
|
||||
width: calc(100% - 50px);
|
||||
background: rgba(0,0,0,0.5);
|
||||
overflow: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
.contentAreaScrollable{
|
||||
overflow: hidden;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
#settingsSearch {
|
||||
background: black;
|
||||
border: none;
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
<button id="startBtn" type="button" class="btn btn-dark btn-lg btn-block">Start Streamer</button>
|
||||
</form>
|
||||
</div>
|
||||
<div id="settings" class="contentArea" style="display: none;">
|
||||
<div id="settings" class="contentArea contentAreaScrollable customScroll" style="display: none;">
|
||||
<form class="form-group">
|
||||
<button id="installScpVBusBtn" type="button" class="btn btn-dark btn-block">Install Xbox
|
||||
Controller</button>
|
||||
|
@ -60,10 +60,15 @@
|
|||
<button id="unInstallAudioDriverBtn" type="button" class="btn btn-dark btn-block">Un-Install Audio
|
||||
Driver</button>
|
||||
</form>
|
||||
<div class="form-group">
|
||||
<label class="switch">
|
||||
<input id="rainbowEnabled" type="checkbox">
|
||||
<span class="slider round"></span>
|
||||
</label>
|
||||
<label class="form-check-label" for="rainbowEnabled">
|
||||
Enable Rainbow Accents
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="statusbar" class="rainbowBackgroundColor2">
|
||||
|
|
Loading…
Reference in a new issue