Skip to content

Commit

Permalink
Feat: Include 'styled-scrollbar' mixin in 'body'
Browse files Browse the repository at this point in the history
  • Loading branch information
ITurres committed Oct 9, 2023
1 parent c1773c0 commit ec71dfe
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/styles/index.scss
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
@forward 'base/normalize.css';
@forward 'UI/button.scss';
@forward 'UI/LineCount.scss';
@forward 'UI/LineCount.scss'; // * LineCount is a component that is present and should be styled in all pages.

@use './variables/colors' as colors;
@use './variables/fonts' as fonts;
@use './mixins' as mixins;

$font-family-light: fonts.$font-family-light;

$dark: colors.$dark;
$light: colors.$light;
$light-gray: colors.$light-gray;

@font-face {
font-family: 'RolexFont-Bold';
Expand All @@ -29,4 +31,6 @@ body {
background-color: $dark;
color: $light;
font-family: $font-family-light;

@include mixins.styled-scrollbar($light-gray, $dark, 0.5rem, 0, 1rem);
}

0 comments on commit ec71dfe

Please sign in to comment.