mirror of
https://github.com/DevL0rd/SkyNX
synced 2024-11-23 03:23:04 +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);
|
height: calc(100% - 57px);
|
||||||
width: calc(100% - 50px);
|
width: calc(100% - 50px);
|
||||||
background: rgba(0,0,0,0.5);
|
background: rgba(0,0,0,0.5);
|
||||||
overflow: none;
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.contentAreaScrollable{
|
||||||
|
overflow: hidden;
|
||||||
|
overflow-y: auto;
|
||||||
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#settingsSearch {
|
#settingsSearch {
|
||||||
background: black;
|
background: black;
|
||||||
border: none;
|
border: none;
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
<button id="startBtn" type="button" class="btn btn-dark btn-lg btn-block">Start Streamer</button>
|
<button id="startBtn" type="button" class="btn btn-dark btn-lg btn-block">Start Streamer</button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div id="settings" class="contentArea" style="display: none;">
|
<div id="settings" class="contentArea contentAreaScrollable customScroll" style="display: none;">
|
||||||
<form class="form-group">
|
<form class="form-group">
|
||||||
<button id="installScpVBusBtn" type="button" class="btn btn-dark btn-block">Install Xbox
|
<button id="installScpVBusBtn" type="button" class="btn btn-dark btn-block">Install Xbox
|
||||||
Controller</button>
|
Controller</button>
|
||||||
|
@ -60,10 +60,15 @@
|
||||||
<button id="unInstallAudioDriverBtn" type="button" class="btn btn-dark btn-block">Un-Install Audio
|
<button id="unInstallAudioDriverBtn" type="button" class="btn btn-dark btn-block">Un-Install Audio
|
||||||
Driver</button>
|
Driver</button>
|
||||||
</form>
|
</form>
|
||||||
|
<div class="form-group">
|
||||||
<label class="switch">
|
<label class="switch">
|
||||||
<input id="rainbowEnabled" type="checkbox">
|
<input id="rainbowEnabled" type="checkbox">
|
||||||
<span class="slider round"></span>
|
<span class="slider round"></span>
|
||||||
</label>
|
</label>
|
||||||
|
<label class="form-check-label" for="rainbowEnabled">
|
||||||
|
Enable Rainbow Accents
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="statusbar" class="rainbowBackgroundColor2">
|
<div id="statusbar" class="rainbowBackgroundColor2">
|
||||||
|
|
Loading…
Reference in a new issue