Skip to content

Commit

Permalink
Assigned all used variables to new ones
Browse files Browse the repository at this point in the history
  • Loading branch information
mahammad-mostafa committed Jan 22, 2024
1 parent 0a47057 commit dc9a99f
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@

@use 'variables' as var;

$main-color: var.$main-color;
$fourth-main-color: var.$fourth-main-color;
$main-font: var.$main-font;
$heading-font: var.$heading-font;

body {
background-color: var.$main-color;
color: var.$fourth-main-color;
font-family: var.$main-font;
background-color: $main-color;
color: $fourth-main-color;
font-family: $main-font;
}

h1,
Expand All @@ -14,5 +19,5 @@ h3,
h4,
h5,
h6 {
font-family: var.$heading-font;
font-family: $heading-font;
}

0 comments on commit dc9a99f

Please sign in to comment.