chore: minor ui changes

This commit is contained in:
Aman Harwara
2023-05-18 22:15:02 +05:30
parent dac719dc5a
commit a1225829ca
5 changed files with 30 additions and 14 deletions

View File

@@ -183,11 +183,11 @@ const DataBackups = ({ application, viewControllerManager }: Props) => {
<div className="flex items-center gap-2">
<label className="flex items-center gap-2">
<input type="radio" onChange={() => setIsBackupEncrypted(true)} checked={isBackupEncrypted} />
<span className="text-sm font-medium">Encrypted</span>
<span className="text-base font-medium md:text-sm">Encrypted</span>
</label>
<label className="flex items-center gap-2">
<input type="radio" onChange={() => setIsBackupEncrypted(false)} checked={!isBackupEncrypted} />
<span className="text-sm font-medium">Decrypted</span>
<span className="text-base font-medium md:text-sm">Decrypted</span>
</label>
</div>
</form>

View File

@@ -29,7 +29,7 @@ const Persistence = ({ application }: Props) => {
<PreferencesGroup>
<PreferencesSegment>
<Title className="mb-2">When opening the app, show...</Title>
<label className="mb-2 flex items-center gap-2 text-sm font-medium">
<label className="mb-2 flex items-center gap-2 text-base font-medium md:text-sm">
<StyledRadioInput
name="state-persistence"
checked={!shouldPersistNoteState}
@@ -39,7 +39,7 @@ const Persistence = ({ application }: Props) => {
/>
The first note in the list
</label>
<label className="flex items-center gap-2 text-sm font-medium">
<label className="flex items-center gap-2 text-base font-medium md:text-sm">
<StyledRadioInput
name="state-persistence"
checked={!!shouldPersistNoteState}