Skip to content

Commit

Permalink
update background color
Browse files Browse the repository at this point in the history
  • Loading branch information
itskdhere committed Oct 30, 2024
1 parent 8ffb7bb commit 7c0dc85
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
:root {
--side-gap: 0.5rem;
--bg: linear-gradient(-90deg, #272626 22%, #25424a 68%, #37616c 84%);
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
Expand Down
2 changes: 1 addition & 1 deletion src/components/About/About.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
align-items: center;
padding: calc(var(--mantine-spacing-xl) * 4);

background: linear-gradient(90deg, #272626 22%, #25424a 68%, #37616c 84%);
background: var(--bg);

@media (max-width: $mantine-breakpoint-sm) {
flex-direction: column-reverse;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Events/Events.module.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.container {
background: linear-gradient(90deg, #272626 22%, #25424a 68%, #37616c 84%);
background: var(--bg);
max-width: 100vw;
margin: 0;
padding: rem(15px) calc(var(--mantine-spacing-xl) * 4) rem(100px)
Expand Down
2 changes: 1 addition & 1 deletion src/components/FAQ/Faq.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
background-position: top left;
position: relative;
color: var(--mantine-color-black);
background: linear-gradient(90deg, #272626 22%, #25424a 68%, #37616c 84%);
background: var(--bg);
}

.title {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer/Footer.module.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.footer {
border-top: rem(1px) solid var(--mantine-color-dark-2);
background: linear-gradient(90deg, #272626 22%, #25424a 68%, #37616c 84%);
background: var(--bg);
padding: rem(5px) 0;
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/Hero/Hero.module.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.wrapper {
background: linear-gradient(90deg, #272626 22%, #25424a 68%, #37616c 84%);
background: var(--bg);
color: white;
display: flex;
align-items: center; /* Vertically center the content */
Expand Down
2 changes: 1 addition & 1 deletion src/components/Navbar/Navbar.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
padding-right: var(--mantine-spacing-md);
border-bottom: rem(1px) solid rgba(190, 190, 190, 0.3);
box-shadow: 0px 1px 1px rgba(195, 195, 195, 0.3);
background: linear-gradient(90deg, #272626 22%, #25424a 68%, #37616c 84%);
background: var(--bg);
position: fixed;
top: 0;
left: 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
@@ -1,5 +1,5 @@
.container {
background: linear-gradient(90deg, #272626 22%, #25424a 68%, #37616c 84%);
background: var(--bg);
min-width: 100%;
margin: 0;
padding: rem(15px) calc(var(--mantine-spacing-lg) * 1) rem(100px)
Expand Down

0 comments on commit 7c0dc85

Please sign in to comment.