From 9384d09ff6ea2d0fad4e94f21ac221c1278eedb3 Mon Sep 17 00:00:00 2001 From: ale Date: Thu, 29 May 2025 15:24:39 -0300 Subject: [PATCH] Arreglado scroll horizontal en celular y tablet --- resources/sass/app.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/resources/sass/app.scss b/resources/sass/app.scss index 1ae79f8..94ea46a 100644 --- a/resources/sass/app.scss +++ b/resources/sass/app.scss @@ -7,6 +7,11 @@ @import 'bulma'; @import '~bulma-switch'; +html, body { + overflow-x: hidden; + max-width: 100%; +} + main.has-top-padding { padding-top: 4.5rem !important; } @@ -56,4 +61,4 @@ $widthUnit: "em"; // Add the unit here (rem|em|px|%) width: #{$width}#{$widthUnit} !important; } } -} \ No newline at end of file +}