From ec71dfea8a487fd2f829ca5201bbfad93a21b886 Mon Sep 17 00:00:00 2001
From: iturres <emanueliturres.co@gmail.com>
Date: Mon, 9 Oct 2023 19:54:17 -0300
Subject: [PATCH] Feat: Include 'styled-scrollbar' mixin in 'body'

---
 src/styles/index.scss | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/styles/index.scss b/src/styles/index.scss
index 2502085..4caa3dd 100644
--- a/src/styles/index.scss
+++ b/src/styles/index.scss
@@ -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';
@@ -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);
 }