From 0b93569df29ffc21478bfb58a1d752cf5219076c Mon Sep 17 00:00:00 2001 From: Aditya Gupta <75029064+aforaditya@users.noreply.github.com> Date: Fri, 25 Mar 2022 17:15:40 +0530 Subject: [PATCH] Increase the visibility of 404 error message (#11108) Changed the font-size and color of the h2 element of the 404 error page so that it can look more vibrant and stand out. --- css/404.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/css/404.scss b/css/404.scss index fb430e4f8..87f0036df 100644 --- a/css/404.scss +++ b/css/404.scss @@ -4,11 +4,12 @@ text-align: center; h2 { - font-size: 36px; + font-size: 48px; + color : #f2f2f2; } &__message { font-size: 24px; margin-top: 20px; } -} \ No newline at end of file +}