Bob AI: how can I change the font?

This commit is contained in:
2026-02-01 21:54:11 +02:00
parent 29a5067290
commit ccc9ebf1b3

View File

@@ -1,5 +1,5 @@
@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
:root {
/* Base units */
/* --vw is set by ThemeProvider */
@@ -520,7 +520,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: 'Merriweather', sans-serif;
font-family: 'Inter', sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -533,5 +533,5 @@ h3,
h4,
h5,
h6 {
font-family: 'Merriweather', sans-serif;
font-family: 'Inter', sans-serif;
}