refactor(ui): consistent use of thin-font prop
This commit is contained in:
parent
c73e3dba29
commit
03d378fb57
|
@ -9,7 +9,7 @@ import { type AlignmentProps, align } from '~/composables/alignment'
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
thickWhenActive?: true
|
thickWhenActive?: true
|
||||||
|
|
||||||
thin?: true
|
thinFont?: true
|
||||||
|
|
||||||
icon?: string;
|
icon?: string;
|
||||||
round?: true;
|
round?: true;
|
||||||
|
@ -87,7 +87,7 @@ onMounted(() => {
|
||||||
&.is-icon-only {
|
&.is-icon-only {
|
||||||
padding: var(--padding);
|
padding: var(--padding);
|
||||||
}
|
}
|
||||||
&.no-spacing{
|
&.no-spacing {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
|
|
|
@ -194,8 +194,6 @@ const albumModal = ref()
|
||||||
class="actions"
|
class="actions"
|
||||||
>
|
>
|
||||||
<Link
|
<Link
|
||||||
thin
|
|
||||||
forceUnderline
|
|
||||||
:to="useModal('album').to"
|
:to="useModal('album').to"
|
||||||
>
|
>
|
||||||
<i class="bi bi-plus" />
|
<i class="bi bi-plus" />
|
||||||
|
|
Loading…
Reference in New Issue