From 2f140d680a1c52a41818d99e7a913ab012eb3c5e Mon Sep 17 00:00:00 2001 From: deepjyoti30 Date: Wed, 13 May 2020 12:22:50 +0530 Subject: [PATCH] Added font size for welcome message. --- config.json | 2 +- css/main.css | 2 ++ scss/main.scss | 4 ++++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/config.json b/config.json index 18bc16b..27996d4 100644 --- a/config.json +++ b/config.json @@ -30,6 +30,6 @@ } ], "user": "Deepjyoti", - "disableMessage": true, + "disableMessage": false, "disableDate": false } diff --git a/css/main.css b/css/main.css index 4ac17dd..ebf0717 100644 --- a/css/main.css +++ b/css/main.css @@ -23,6 +23,8 @@ body { .main #date-text { padding-top: 15px; color: #d9d9d9; } + .main #message-text { + font-size: 23px; } .main #search-bar { width: 50%; margin: 0 auto 50px auto; diff --git a/scss/main.scss b/scss/main.scss index 6422054..649e283 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -45,6 +45,10 @@ body { color: darken($foreground, 15); } + #message-text { + font-size: 23px; + } + #search-bar { width: 50%; margin: 0 auto 50px auto;