Skip to content

Commit

Permalink
fix: styles in the app
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitdas13595 committed Oct 7, 2023
1 parent c98c93a commit 4fe2475
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
Binary file added bun.lockb
Binary file not shown.
15 changes: 14 additions & 1 deletion public/css/styles.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
:root{
--bg-color : #333;
--primary-color: #888;
--primary-color: #f59f9f;
--secondary-color: #ccc;
}
*{
Expand Down Expand Up @@ -31,6 +31,9 @@ footer {
padding: 1rem;
margin-top: 1rem;
border-top: 2px solid var(--secondary-color);
border-top-right-radius: 10px;
border-top-left-radius: 10px;

}

header {
Expand Down Expand Up @@ -91,3 +94,13 @@ nav a{
margin: 10px;
}

li a{
padding: 10px;
}

li a:hover{
background: #f59f9f;
border-radius: 10px;

}

0 comments on commit 4fe2475

Please sign in to comment.