AItool commited on
Commit
fb6247c
·
verified ·
1 Parent(s): f9ffe94

Update testnavbar.py

Browse files
Files changed (1) hide show
  1. testnavbar.py +6 -6
testnavbar.py CHANGED
@@ -8,12 +8,12 @@ import calendar
8
  from datetime import datetime
9
 
10
  # Get frankenui and tailwind headers via CDN using Theme.blue.headers()
11
- hdrs = Theme.blue.headers() + """
12
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
13
- <style>
14
- body { font-family: 'Inter', sans-serif; }
15
- </style>
16
- """
17
 
18
  # fast_app is shadowed by MonsterUI to make it default to no Pico, and add body classes
19
  # needed for frankenui theme styling
 
8
  from datetime import datetime
9
 
10
  # Get frankenui and tailwind headers via CDN using Theme.blue.headers()
11
+ hdrs = Theme.blue.headers() + [
12
+ # Add Google Fonts link
13
+ '<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">',
14
+ # Override body font
15
+ '<style> body { font-family: "Inter", sans-serif; } </style>'
16
+ ]
17
 
18
  # fast_app is shadowed by MonsterUI to make it default to no Pico, and add body classes
19
  # needed for frankenui theme styling