This commit is contained in:
h z
2024-12-03 09:41:58 +00:00
parent 8bbfc10a39
commit b355b867a5
8 changed files with 233 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
/*src/components/SideNavigation.css*/
.side-navigation {
width: 250px;
background-color: #f4f4f4;
padding: 1rem;
border-right: 1px solid #ddd;
}
.side-navigation h3 {
margin-top: 0;
}
.side-navigation ul {
list-style: none;
padding: 0;
}
.side-navigation ul li {
margin-bottom: 0.5rem;
}
.side-navigation ul li a {
text-decoration: none;
color: #333;
}
.side-navigation ul li a:hover {
text-decoration: underline;
}