Skip to content

Commit

Permalink
Merge pull request #4 from savander/main
Browse files Browse the repository at this point in the history
feat: Version 0.1.1 - Scrollbars Redesing
  • Loading branch information
savander authored Jan 27, 2024
2 parents b504d8c + 53a31f3 commit 1a2a299
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 16 deletions.
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "codelume",
"private": true,
"version": "0.1.0",
"version": "0.1.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "codelume"
version = "0.1.0"
version = "0.1.1"
description = "An application that helps you with debugging your projects."
authors = ["Adam Jaworski"]
license = ""
Expand Down
39 changes: 39 additions & 0 deletions src/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,45 @@ html.dark {
@apply text-slate-300;
}

/*
* Scrollbar
*/
::-webkit-scrollbar {
@apply w-3 h-3;
}

::-webkit-scrollbar-track {
@apply bg-slate-100;
}

::-webkit-scrollbar-thumb {
@apply bg-slate-300 rounded-xl;
}

::-webkit-scrollbar-thumb:hover {
@apply bg-slate-400;
}

::-webkit-scrollbar-corner {
@apply bg-slate-100;
}

html.dark ::-webkit-scrollbar-track {
@apply bg-slate-800;
}

html.dark ::-webkit-scrollbar-thumb {
@apply bg-slate-700;
}

html.dark ::-webkit-scrollbar-thumb:hover {
@apply bg-slate-600;
}

html.dark ::-webkit-scrollbar-corner {
@apply bg-slate-800;
}

.feedback-heading {
@apply text-xl font-bold text-slate-800 dark:text-slate-300;
}
Expand Down

0 comments on commit 1a2a299

Please sign in to comment.