Fix mobile display (#77)

This commit is contained in:
Timothy Armes
2023-07-06 23:11:01 +02:00
committed by GitHub
parent 30b59ff42a
commit 06eade3b6b
3 changed files with 12 additions and 8 deletions
+8 -1
View File
@@ -6,6 +6,13 @@ module.exports = {
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {},
theme: {
extend: {
height: {
// We use 100svh, falling back to vh for old browsers
screen: ['100vh', '100svh'],
}
}
},
plugins: [],
};