Merge pull request 'Add smaller font size (resolves #10)' (#46) from smaller-font-size into dev

Reviewed-on: https://codeberg.org/yeentown/barkey/pulls/46
Reviewed-by: zima <zima@noreply.codeberg.org>
This commit is contained in:
zima 2025-01-14 00:59:35 +00:00
commit c93bb36eac
2 changed files with 4 additions and 0 deletions

View file

@ -216,6 +216,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkRadios v-model="fontSize">
<template #label>{{ i18n.ts.fontSize }}</template>
<option value="-1"><span style="font-size: 12.5px;">Aa</span></option>
<option :value="null"><span style="font-size: 14px;">Aa</span></option>
<option value="1"><span style="font-size: 15px;">Aa</span></option>
<option value="2"><span style="font-size: 16px;">Aa</span></option>

View file

@ -110,6 +110,9 @@ html {
}
}
&.f--1 {
font-size: 12.5px;
}
&.f-1 {
font-size: 15px;
}