From 376982d35065ebac7d2075e12aaecfd92ffdf37f Mon Sep 17 00:00:00 2001 From: SumaiyaaRq Date: Fri, 25 Oct 2024 16:37:00 +0530 Subject: [PATCH 1/3] Fixes Heading Overflow in mobile devices --- webpack/sass/home-page.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/webpack/sass/home-page.scss b/webpack/sass/home-page.scss index 12e2f604..6aae9b4d 100644 --- a/webpack/sass/home-page.scss +++ b/webpack/sass/home-page.scss @@ -5,6 +5,12 @@ // Title styling within the hero section .hero-title { @extend .padding-horizontal-big; + @media(max-width:530px) { + h1{ + font-size: 2.8rem; + line-height: 1.2; + } + } } // Description styling within the hero section From 19fcefb952d382a0ea9a73ecc191dd030781e5d5 Mon Sep 17 00:00:00 2001 From: SumaiyaaRq Date: Thu, 31 Oct 2024 01:05:52 +0530 Subject: [PATCH 2/3] Resolved conflicts and merged main into fix/heading-overflow-in-small-screens --- webpack/sass/home-page.scss | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/webpack/sass/home-page.scss b/webpack/sass/home-page.scss index 4d65659f..21b04336 100644 --- a/webpack/sass/home-page.scss +++ b/webpack/sass/home-page.scss @@ -5,19 +5,17 @@ // Title styling within the hero section .hero-title { @extend .padding-horizontal-big; -<<<<<<< HEAD + .has-text-orange{ + color:rgb(251 119 41); + } + @media(max-width:530px) { h1{ font-size: 2.8rem; line-height: 1.2; } -======= - .has-text-orange{ - color:rgb(251 119 41); ->>>>>>> origin/main } } - // Description styling within the hero section .hero-description { @extend .body-bigger; From 8950a17357f857a6c474842990bc4202c70d635f Mon Sep 17 00:00:00 2001 From: Timid Robot Zehta Date: Tue, 5 Nov 2024 08:21:03 -0800 Subject: [PATCH 3/3] restore blank line --- webpack/sass/home-page.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/webpack/sass/home-page.scss b/webpack/sass/home-page.scss index 21b04336..5634872e 100644 --- a/webpack/sass/home-page.scss +++ b/webpack/sass/home-page.scss @@ -16,6 +16,7 @@ } } } + // Description styling within the hero section .hero-description { @extend .body-bigger;