Skip to content

Commit

Permalink
Modify css style
Browse files Browse the repository at this point in the history
See also: #5
  • Loading branch information
BECATRUE committed Nov 28, 2024
1 parent 2750d3a commit 7a24918
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wlm-ui/src/MainPage/Channel/Channel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const Channel = (props: IProps) => {
onChange={(e) => setExposure(Number(e.target.value) / 1e3)}
style={{ textAlign: 'right' }}
/>
<span>ms</span>
<span style={{ textAlign: 'left' }}>ms</span>
<button onClick={() => props.onClickSetExposure(exposure)}>Set</button>
<b style={{ textAlign: 'left' }}>Period</b>
<input
Expand All @@ -41,7 +41,7 @@ const Channel = (props: IProps) => {
onChange={(e) => setPeriod(Number(e.target.value))}
style={{ textAlign: 'right' }}
/>
<span>s</span>
<span style={{ textAlign: 'left' }}>s</span>
<button onClick={() => props.onClickSetPeriod(period)}>Set</button>
</div>
</div>
Expand Down

0 comments on commit 7a24918

Please sign in to comment.