Skip to content

Commit

Permalink
add files
Browse files Browse the repository at this point in the history
  • Loading branch information
Renstrio24p committed Jun 30, 2023
1 parent b959cf3 commit c83584f
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 3 deletions.
1 change: 1 addition & 0 deletions dist/src/sass/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
list-style: none;
text-decoration: none;
scroll-behavior: smooth;
user-select: none;
}

html {
Expand Down
3 changes: 3 additions & 0 deletions dist/src/sass/modules/app.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
bottom: 0;
background-color: #242828;
overflow-y: scroll;
-ms-overflow-style: none;
scrollbar-width: thin;
scrollbar-color: transparent transparent;
}

.text-color {
Expand Down
8 changes: 8 additions & 0 deletions dist/src/sass/modules/sidebar.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@
height: 100%;
overflow-y: scroll;
scroll-behavior: smooth;
-ms-overflow-style: none;
scrollbar-width: thin;
scrollbar-color: transparent transparent;
}

.font-size-20px {
Expand Down Expand Up @@ -257,3 +260,8 @@
justify-content: space-around;
padding: 10px;
}

.blinks a:hover i {
color: aqua;
transition: .5s;
}
6 changes: 3 additions & 3 deletions dist/webpack.bundle.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/sass/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
list-style: none;
text-decoration: none;
scroll-behavior: smooth;
user-select: none;
}

html {
Expand Down
3 changes: 3 additions & 0 deletions src/sass/modules/app.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
bottom: 0;
background-color: #242828;
overflow-y: scroll;
-ms-overflow-style: none;
scrollbar-width: thin;
scrollbar-color: transparent transparent;
}

.text-color {
Expand Down
8 changes: 8 additions & 0 deletions src/sass/modules/sidebar.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@
height: 100%;
overflow-y: scroll;
scroll-behavior: smooth;
-ms-overflow-style: none;
scrollbar-width: thin;
scrollbar-color: transparent transparent;
}

.font-size-20px {
Expand Down Expand Up @@ -257,3 +260,8 @@
justify-content: space-around;
padding: 10px;
}

.blinks a:hover i {
color: aqua;
transition: .5s;
}

0 comments on commit c83584f

Please sign in to comment.