Skip to content

Commit

Permalink
change bg and member card color
Browse files Browse the repository at this point in the history
  • Loading branch information
itskdhere committed Oct 30, 2024
1 parent 7c0dc85 commit c653e8c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
13 changes: 10 additions & 3 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
:root {
--side-gap: 0.5rem;
--bg: linear-gradient(-90deg, #272626 22%, #25424a 68%, #37616c 84%);
--bg: linear-gradient(
-90deg,
hsl(194, 33%, 21%) 22%,
hsl(193, 33%, 26%) 68%,
hsl(192, 33%, 31%) 84%
);
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

/*::-webkit-scrollbar {
/*
::-webkit-scrollbar {
display: none;
}*/
}
*/

* {
margin: 0;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Teams/Teams.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
width: rem(300px);
padding: var(--mantine-spacing-md);
border-radius: var(--mantine-radius-md);
background-color: rgba(40, 40, 40, 1);
background-color: rgba(40, 40, 40, 0.5);
}

.memberLinks {
Expand Down

0 comments on commit c653e8c

Please sign in to comment.