open-saas/opensaas-sh/app_diff/tailwind.config.cjs.diff
vincanger 3bb78654d8
Use webp over png and lazy load images (#314)
* use webp and lazy load images

* fix hero

* update app_diff

* fix app_diff

* fix head

* remove async decoding
2024-11-12 13:38:06 +01:00

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')],