Bob AI: change font to Roboto

This commit is contained in:
2026-02-01 23:17:26 +02:00
parent fe0b937efd
commit eb2424df8e

View File

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