max height on select

This commit is contained in:
GRL 2021-06-07 17:18:39 +02:00
parent c9da38c7ec
commit aa9c3b9f4f

View file

@ -90,7 +90,7 @@
<section class="selectWebcamForm"> <section class="selectWebcamForm">
{#if $cameraListStore.length > 1 } <!--{#if $cameraListStore.length > 1 }-->
<div class="control-group"> <div class="control-group">
<img src={cinemaImg} alt="Camera" /> <img src={cinemaImg} alt="Camera" />
<div class="nes-select"> <div class="nes-select">
@ -103,9 +103,9 @@
</select> </select>
</div> </div>
</div> </div>
{/if} <!-- {/if}
{#if $microphoneListStore.length > 1 } {#if $microphoneListStore.length > 1 }-->
<div class="control-group"> <div class="control-group">
<img src={microphoneImg} alt="Microphone" /> <img src={microphoneImg} alt="Microphone" />
<div class="nes-select"> <div class="nes-select">
@ -118,7 +118,7 @@
</select> </select>
</div> </div>
</div> </div>
{/if} <!--{/if}-->
</section> </section>
<section class="action"> <section class="action">
@ -144,12 +144,12 @@
font-family: "Press Start 2P"; font-family: "Press Start 2P";
margin-top: 1vh; margin-top: 1vh;
margin-bottom: 1vh; margin-bottom: 1vh;
}
option { option {
font-family: "Press Start 2P"; font-family: "Press Start 2P";
} }
} }
}
section.action{ section.action{
text-align: center; text-align: center;
@ -219,14 +219,16 @@
.enableCameraScene .control-group .nes-select { .enableCameraScene .control-group .nes-select {
font-size: 80%; font-size: 80%;
width: 50% }
.enableCameraScene .control-group {
max-height: 60px;
margin-top: 10px;
} }
.enableCameraScene button.letsgo { .enableCameraScene button.letsgo {
font-size: 160%; font-size: 160%;
} }
} }
</style> </style>