From cc67235b384b4adf39c5142ba6405cb58020b582 Mon Sep 17 00:00:00 2001
From: foxlee2525 <140967832+foxlee2525@users.noreply.github.com>
Date: Wed, 7 Aug 2024 15:59:10 +0800
Subject: [PATCH 1/2] fix(about/coc): fix responsive breakpoint for two-column
layout
Fixed the issue where the grid layout did not activate at the intended screen size.
---
components/core/layout/TwoColWrapper.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/components/core/layout/TwoColWrapper.vue b/components/core/layout/TwoColWrapper.vue
index 0ecf043b23..e86c91efd5 100644
--- a/components/core/layout/TwoColWrapper.vue
+++ b/components/core/layout/TwoColWrapper.vue
@@ -19,7 +19,7 @@ export default {
diff --git a/pages/conference/poster-session.vue b/pages/conference/poster-session.vue
index 5e58dc125e..4a646f1310 100644
--- a/pages/conference/poster-session.vue
+++ b/pages/conference/poster-session.vue
@@ -7,7 +7,7 @@
-
+
.pageWrapper {
- @apply px-4 md:px-32;
+ @apply px-4 lg:px-32;
}
diff --git a/tailwind.config.js b/tailwind.config.js
index 1e1e3c4db7..03e1bd9648 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -97,7 +97,7 @@ module.exports = {
xs: '360px',
sm: '640px',
md: '768px',
- lg: '1194px',
+ lg: '1024px',
xl: '1440px',
'2xl': '1600px',
},