forked from Satyam1923/Spring-Music-Player
-
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.
Merge pull request Satyam1923#224 from yashmandi/feat/settings-page
[FIX] Satyam1923#215 Implemented Settings Page
- Loading branch information
Showing
1,106 changed files
with
301,079 additions
and
142 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
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,50 @@ | ||
.settings-page { | ||
display: flex; | ||
height: 100vh; | ||
width: 100vw; | ||
/* Adjusted to cover the full viewport width */ | ||
} | ||
|
||
.settings-sidebar { | ||
width: 250px; | ||
/* Adjusted width for a typical sidebar */ | ||
background-color: #1e1e1e; | ||
padding: 20px; | ||
position: fixed; | ||
/* Make the sidebar stick to the left */ | ||
height: 100vh; | ||
/* Ensure the sidebar covers the full height of the viewport */ | ||
overflow-y: auto; | ||
/* Enable scrolling if content exceeds the height */ | ||
} | ||
|
||
.settings-sidebar ul { | ||
list-style: none; | ||
padding: 0; | ||
} | ||
|
||
.settings-sidebar li { | ||
margin: 20px 0; | ||
/* Increased margin for more bottom gap */ | ||
cursor: pointer; | ||
color: #ffffff; | ||
/* Default color */ | ||
} | ||
|
||
.settings-sidebar li:hover, | ||
.settings-sidebar li.active { | ||
color: #7373cc; | ||
/* Highlight color */ | ||
} | ||
|
||
.settings-content { | ||
margin-left: 250px; | ||
/* Same as the sidebar width */ | ||
flex-grow: 1; | ||
padding: 25px; | ||
background-color: #282828; | ||
overflow-y: auto; | ||
/* Enable scrolling if content exceeds the height */ | ||
height: 100vh; | ||
/* Ensure the content area covers the full height of the viewport */ | ||
} |
Oops, something went wrong.