mirror of
https://github.com/wasp-lang/open-saas.git
synced 2025-05-21 09:40:07 +02:00
* use webp and lazy load images * fix hero * update app_diff * fix app_diff * fix head * remove async decoding
23 lines
653 B
Diff
23 lines
653 B
Diff
--- template/app/tailwind.config.cjs
|
|
+++ opensaas-sh/app/tailwind.config.cjs
|
|
@@ -8,7 +8,8 @@
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
- satoshi: ['Satoshi', 'system-ui', 'sans-serif'],
|
|
+ sans: ['ui-monospace', 'Liberation Mono', 'Menlo', 'monospace'],
|
|
+ satoshi: ['Satoshi', 'sans-serif'],
|
|
},
|
|
colors: {
|
|
current: 'currentColor',
|
|
@@ -246,6 +247,9 @@
|
|
'spin-2': 'spin 2s linear infinite',
|
|
'spin-3': 'spin 3s linear infinite',
|
|
},
|
|
+ aspectRatio: {
|
|
+ '4/3': '4 / 3',
|
|
+ },
|
|
},
|
|
},
|
|
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
|