Skip to content

Commit

Permalink
fix(about/coc): fix responsive breakpoint for two-column layout
Browse files Browse the repository at this point in the history
Fixed the issue where the grid layout did not activate at the intended screen size.
  • Loading branch information
foxlee2525 committed Aug 20, 2024
1 parent 5513387 commit cc67235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/core/layout/TwoColWrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default {

<style lang="postcss" scpoed>
.two-col-layout {
@media (min-width: 1024px) {
@media (min-width: 1194px) {
grid-template-columns: 1fr 5fr;
}
}
Expand Down

0 comments on commit cc67235

Please sign in to comment.