Style text inputs

This commit is contained in:
z0ccc 2022-05-12 22:39:37 -04:00
parent fc5ef5da5a
commit 39759274fc
3 changed files with 3 additions and 3 deletions

View file

@ -25,7 +25,7 @@ const ProfileSelect = ({ profile, setProfile }) => {
value={profile} value={profile}
onChange={changeProfile} onChange={changeProfile}
style={{ style={{
width: '208px', width: '214px',
}} }}
> >
<option value="none">None</option> <option value="none">None</option>

View file

@ -65,7 +65,7 @@ const UserAgentSettings = () => {
value={userAgent} value={userAgent}
onChange={changeUserAgent} onChange={changeUserAgent}
style={{ style={{
width: '200px', width: '206px',
}} }}
/> />
<label>User Agent</label> <label>User Agent</label>

View file

@ -13,7 +13,7 @@ body {
background-color: var(--background); background-color: var(--background);
font-size: 13px; font-size: 13px;
line-height: 22px; line-height: 22px;
width: 305px; width: 315px;
margin: 0; margin: 0;
font-family: 'Segoe UI', Tahoma, sans-serif; font-family: 'Segoe UI', Tahoma, sans-serif;
} }