style adjustments
This commit is contained in:
@@ -51,6 +51,7 @@ export default function CPUUsageSelector({ defaultValue, onChange }: Props) {
|
|||||||
</p>
|
</p>
|
||||||
<div className="segment-slider-container">
|
<div className="segment-slider-container">
|
||||||
<Slider
|
<Slider
|
||||||
|
tooltipVisible={false}
|
||||||
tipFormatter={value => TOOLTIPS[value]}
|
tipFormatter={value => TOOLTIPS[value]}
|
||||||
onChange={handleChange}
|
onChange={handleChange}
|
||||||
min={1}
|
min={1}
|
||||||
@@ -59,6 +60,7 @@ export default function CPUUsageSelector({ defaultValue, onChange }: Props) {
|
|||||||
defaultValue={selectedOption}
|
defaultValue={selectedOption}
|
||||||
value={selectedOption}
|
value={selectedOption}
|
||||||
/>
|
/>
|
||||||
|
<p className="selected-value-note">Selected: {TOOLTIPS[selectedOption]}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -120,7 +120,7 @@ export default function VideoLatency() {
|
|||||||
|
|
||||||
<div className="segment-slider-container">
|
<div className="segment-slider-container">
|
||||||
<Slider
|
<Slider
|
||||||
tipFormatter={value => <SegmentToolTip value={SLIDER_COMMENTS[value]} />}
|
tooltipVisible={false}
|
||||||
onChange={handleChange}
|
onChange={handleChange}
|
||||||
min={1}
|
min={1}
|
||||||
max={6}
|
max={6}
|
||||||
@@ -128,6 +128,7 @@ export default function VideoLatency() {
|
|||||||
defaultValue={selectedOption}
|
defaultValue={selectedOption}
|
||||||
value={selectedOption}
|
value={selectedOption}
|
||||||
/>
|
/>
|
||||||
|
<p className="selected-value-note">{SLIDER_COMMENTS[selectedOption]}</p>
|
||||||
<FormStatusIndicator status={submitStatus} />
|
<FormStatusIndicator status={submitStatus} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -17,12 +17,12 @@ export default function ConfigVideoSettings() {
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<Row gutter={16}>
|
<Row gutter={16}>
|
||||||
<Col lg={12}>
|
<Col xl={12}>
|
||||||
<div className="form-module variants-table-module">
|
<div className="form-module variants-table-module">
|
||||||
<VideoVariantsTable />
|
<VideoVariantsTable />
|
||||||
</div>
|
</div>
|
||||||
</Col>
|
</Col>
|
||||||
<Col lg={12}>
|
<Col xl={12}>
|
||||||
<div className="form-module latency-module">
|
<div className="form-module latency-module">
|
||||||
<VideoLatency />
|
<VideoLatency />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user