From 45dc7b2c9b3b8d246cade4a83e86972a7a2d6053 Mon Sep 17 00:00:00 2001 From: Ajay S Date: Thu, 22 Sep 2022 13:30:01 +0530 Subject: [PATCH] added common heading styles --- src/{App.module.scss => App.scss} | 0 src/App.tsx | 3 +-- src/common/styles/global.scss | 17 +++++++++++++++++ 3 files changed, 18 insertions(+), 2 deletions(-) rename src/{App.module.scss => App.scss} (100%) diff --git a/src/App.module.scss b/src/App.scss similarity index 100% rename from src/App.module.scss rename to src/App.scss diff --git a/src/App.tsx b/src/App.tsx index 0253a44..a93b5d5 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,10 +1,9 @@ import React from 'react'; -import styles from './App.module.scss'; +import './App.scss'; function App() { return (
-
); } diff --git a/src/common/styles/global.scss b/src/common/styles/global.scss index d9a92c1..ba6ccc3 100644 --- a/src/common/styles/global.scss +++ b/src/common/styles/global.scss @@ -7,4 +7,21 @@ margin: 0; box-sizing: border-box; font-size: 62.5%; +} + +header, +h1, +h2, +h3, +h4, +h5, +h6 { + font-weight: 700; + margin: 0; + color: var(--heading-color); + font-size: 2rem; +} + +.taskText { + font-size: 1.5rem; } \ No newline at end of file