Spaces:
Sleeping
Sleeping
Update testnavbar.py
Browse files- 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 |
-
|
| 13 |
-
<
|
| 14 |
-
|
| 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
|