Compare commits

..

2 Commits

Author SHA1 Message Date
Antoine M
d68241e494 RESPONSIVE FIX hiding overflow x
All checks were successful
continuous-integration/drone/push Build is passing
2025-09-04 18:19:31 +02:00
Antoine M
b1d0f5c636 RESPONSIVE FIX columns 2025-09-04 18:19:19 +02:00
2 changed files with 6 additions and 3 deletions

View File

@ -30,8 +30,11 @@
}
&--has-cover {
@apply grid grid-cols-2 gap-24 items-center;
@apply grid lg:grid-cols-2 gap-12 lg:gap-24 gap-y-8 items-center;
grid-template-columns: 1fr;
@screen lg {
grid-template-columns: 3.5fr 1fr;
}
&--left {
grid-template-columns: 1fr 3.5fr;

View File

@ -1,3 +1,3 @@
.scroll-story-block {
@apply py-12 flex flex-col gap-12;
@apply py-12 flex flex-col gap-12 overflow-x-hidden;
}