File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 18
18
19
19
@layer components {
20
20
.slide-container {
21
- @apply min-h-screen p-8 transition-all duration-500 ease-in-out relative
21
+ @apply min-h-screen transition-all duration-500 ease-in-out relative
22
22
md:min-h-screen
23
- sm:p-4
24
- overflow-y-scroll /* Changed from auto to scroll to ensure scrolling is always available */
23
+ overflow-y-scroll
25
24
flex flex-col
26
- h-screen; /* Added fixed height to ensure scrolling works */
25
+ pt-16 pb-8 px-8 /* Adjusted padding to ensure content is visible */
26
+ sm:pt-12 sm:pb-6 sm:px-4; /* Responsive padding for mobile */
27
27
}
28
28
29
29
.slide-content {
30
30
@apply max-w-6xl mx-auto bg-white rounded-xl shadow-lg p-8
31
31
sm:p-4
32
32
w-full
33
- overflow-y-visible; /* Allow content to overflow for scrolling */
33
+ overflow-y-visible
34
+ mt-4; /* Added margin top to prevent content from being cut off */
34
35
}
35
36
36
37
/* Rest of the CSS remains unchanged */
You can’t perform that action at this time.
0 commit comments