diff --git a/components/threeVs.tsx b/components/threeVs.tsx index 2cfae44..5c0c0ff 100644 --- a/components/threeVs.tsx +++ b/components/threeVs.tsx @@ -903,8 +903,8 @@ export default function ThreeVs(props: any) { -
-
+
+
{section.volumeText}
@@ -951,7 +951,7 @@ export default function ThreeVs(props: any) {
-
+
{section.volumeText}
@@ -996,7 +996,7 @@ export default function ThreeVs(props: any) {
-
+
{section.volumeText}
@@ -1029,7 +1029,7 @@ export default function ThreeVs(props: any) {
-
+
{section.volumeText}
diff --git a/tailwind.config.ts b/tailwind.config.ts index 0cdcf80..5a52f57 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -250,8 +250,14 @@ const config: Config = { }, screens: { 'xs': '480px', + 'x-390': '390px', 'x-1440': '1440px', - '3xl': '1600px' + '3xl': '1600px', + 'h-sm': { 'raw': '(min-height: 640px) and (max-height: 767px) and (max-width: 932px)' }, + 'h-md': { 'raw': '(min-height: 768px) and (max-height: 1023px) and (max-width: 932px)' }, + 'h-lg': { 'raw': '(min-height: 1024px) and (max-height: 1279px) and (max-width: 932px)' }, + 'h-xl': { 'raw': '(min-height: 1280px) and (max-height: 1535px) and (max-width: 932px)' }, + 'h-2xl': { 'raw': '(min-height: 1536px) and (max-width: 800px)' }, }, }, }