Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
StyingDev authored Oct 18, 2024
1 parent 9bcb59d commit 156ed49
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "StyTab",
"version": "1.0.81",
"version": "1.1.0",
"description": "Stytab - A minimalist Startpage that meets your needs.",
"chrome_url_overrides": {
"newtab": "startpage.html"
Expand Down
1 change: 0 additions & 1 deletion startpage.html
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ <h2>Settings</h2>


<button id="save-settings">Save</button>

</div>


Expand Down
1 change: 1 addition & 0 deletions styles/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ body {
overflow: hidden;
background-size: cover;
transition: background 1s ease-in-out;
background-color: #245c4a;
}

h1 {
Expand Down
26 changes: 25 additions & 1 deletion styles/settings.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,32 @@
z-index: 100;
transition: right 0.4s ease;
display: block; /* Always keep this block */
overflow-y: auto;
overflow-x: hidden;
scrollbar-width: thin;
}

.settings-sidebar::-webkit-scrollbar {
display: none; /* Chrome, Safari, Opera: Hide scrollbar */
}

.settings-sidebar:hover::-webkit-scrollbar {
display: block;
width: 8px;
}

.settings-sidebar::-webkit-scrollbar-thumb {
background-color: rgba(85, 85, 85, 0.8);
border-radius: 10px;
}

.settings-sidebar::-webkit-scrollbar-thumb:hover {
background-color: rgba(119, 119, 119, 0.8);
}




/* Active class to slide in the sidebar */
.settings-sidebar.active {
right: 0;
Expand Down Expand Up @@ -53,7 +77,7 @@
width: calc(100% - 20px);
font-size: 15px;
padding: 10px;
margin-bottom: 15px;
margin-bottom: 10px;
border-radius: 5px;
border: none;
background-color: #444;
Expand Down

0 comments on commit 156ed49

Please sign in to comment.