Skip to content

Commit

Permalink
๐Ÿ’… Add color resets
Browse files Browse the repository at this point in the history
  • Loading branch information
amir-kedis committed Dec 16, 2023
1 parent d86c925 commit 62f6cd5
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
10 changes: 9 additions & 1 deletion client/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ import "./assets/styles/global/global.scss";
function App() {
return (
<>
<h1>HI there test normalize</h1>
<h1>ู…ุง ู„ุง ูŠุฏุฑูƒ ูƒู„ู‡ ู„ุง ูŠุชุฑูƒ ุฌู„ู‡</h1>
<h2>ู…ุง ู„ุง ูŠุฏุฑูƒ ูƒู„ู‡ ู„ุง ูŠุชุฑูƒ ุฌู„ู‡</h2>
<h3>ู…ุง ู„ุง ูŠุฏุฑูƒ ูƒู„ู‡ ู„ุง ูŠุชุฑูƒ ุฌู„ู‡</h3>
<h4>ู…ุง ู„ุง ูŠุฏุฑูƒ ูƒู„ู‡ ู„ุง ูŠุชุฑูƒ ุฌู„ู‡</h4>
<h5>ู…ุง ู„ุง ูŠุฏุฑูƒ ูƒู„ู‡ ู„ุง ูŠุชุฑูƒ ุฌู„ู‡</h5>
<h6>ู…ุง ู„ุง ูŠุฏุฑูƒ ูƒู„ู‡ ู„ุง ูŠุชุฑูƒ ุฌู„ู‡</h6>
<p>ู…ุง ู„ุง ูŠุฏุฑูƒ ูƒู„ู‡ ู„ุง ูŠุชุฑูƒ ุฌู„ู‡</p>
<a href="#1">ู…ุง ู„ุง ูŠุฏุฑูƒ ูƒู„ู‡ ู„ุง ูŠุชุฑูƒ ุฌู„ู‡</a>
<p className="small">ู…ุง ู„ุง ูŠุฏุฑูƒ ูƒู„ู‡ ู„ุง ูŠุชุฑูƒ ุฌู„ู‡</p>
</>
);
}
Expand Down
13 changes: 13 additions & 0 deletions client/src/assets/styles/global/global.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
@import "normalize.css";
@import "typography";

*,
*::before,
*::after {
box-sizing: border-box;
}

body {
font-family: var(--font-primary);
background-color: var(--bg);
color: var(--grey-50);
}

a {
color: var(--grey-50);
text-decoration: none;
}

0 comments on commit 62f6cd5

Please sign in to comment.