implement font-family module

This commit is contained in:
Julie Blanc 2026-03-05 16:29:42 +01:00
parent 6f5efb6fbc
commit cb9fd93e51
137 changed files with 1177 additions and 21 deletions

View file

@ -4,7 +4,7 @@ import { reactive } from 'vue';
const defaults = reactive({
fontSize: { value: 16, unit: 'px' },
lineHeight: { value: 20, unit: 'px' },
fontFamily: 'Alegreya Sans',
fontFamily: 'sans-serif',
color: 'rgb(0, 0, 0)',
});