-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
92 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,4 +31,4 @@ body: | |
- Low | ||
- Medium | ||
- High | ||
- Critical | ||
- Critical |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
blank_issues_enabled: true | ||
blank_issues_enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,4 +37,4 @@ body: | |
- Low | ||
- Medium | ||
- High | ||
- Critical | ||
- Critical |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* ============================================================== | ||
* Scroll | ||
* ============================================================== | ||
*/ | ||
|
||
/* Custom scrollbar styles for WebKit browsers */ | ||
::-webkit-scrollbar { | ||
width: 12px; /* Set the width of the scrollbar */ | ||
height: 12px; /* Set the height of the horizontal scrollbar */ | ||
} | ||
|
||
/* Style for the scrollbar track (the area the scrollbar slides in) */ | ||
::-webkit-scrollbar-track { | ||
background-color: #eee; /* Light gray background for the track */ | ||
border-radius: 10px; /* Rounded corners for the track */ | ||
} | ||
|
||
/* Style for the scrollbar thumb (the draggable part of the scrollbar) */ | ||
::-webkit-scrollbar-thumb { | ||
background-color: #888; /* Darker gray color for the thumb */ | ||
border-radius: 10px; /* Rounded corners for the thumb */ | ||
} | ||
|
||
/* Style for the scrollbar thumb when hovered over */ | ||
::-webkit-scrollbar-thumb:hover { | ||
background-color: #555; /* Darker color for the thumb on hover */ | ||
} | ||
|
||
/* Style for the corner where both horizontal and vertical scrollbars meet */ | ||
::-webkit-scrollbar-corner { | ||
background-color: #eee; /* Light gray background for the corner */ | ||
} | ||
|
||
/* Custom scrollbar styles for Firefox */ | ||
html { | ||
scrollbar-width: thin; /* Set the scrollbar width to thin */ | ||
scrollbar-color: #888 #eee; /* Set the thumb and track colors */ | ||
} |