-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Make the mantine v7 build in dev mode at least PS: I hate mantine * Fix the tables and additional fixes * Add note about the hook * Fix twitch panel && info cards hover css * Fix news section * Fix the footer * Finish the homepage redesigns * Fix menus * Fix the news * Fix icon size * Migrate players to mantine v7 * Finish redesign * Fix challenges * Fix unit page table * Unit stats fix * Battlegroup fixes in designs * Fix the dps chart redesign * Fix the about * Fix small things and button on the home page * Fix the build * Run prettier * Update packages
- Loading branch information
1 parent
7afcfda
commit 692a72f
Showing
117 changed files
with
2,597 additions
and
2,517 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,10 @@ | ||
.footer { | ||
margin-top: var(--mantine-spacing-xl); | ||
padding-top: var(--mantine-spacing-xl); | ||
padding-bottom: var(--mantine-spacing-xl); | ||
background-color: light-dark(var(--mantine-color-gray-0), var(--mantine-color-dark-6)); | ||
border-top: light-dark( | ||
1px solid var(--mantine-color-gray-2), | ||
1px solid var(--mantine-color-dark-5) | ||
); | ||
} |
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,103 @@ | ||
/* header.module.css */ | ||
.headerRoot { | ||
/* marginBottom: theme.spacing.xl; */ | ||
position: sticky; | ||
top: 0; | ||
z-index: 99; | ||
height: 60px; | ||
background-color: light-dark(var(--mantine-color-white), var(--mantine-color-dark-7)); | ||
border-bottom: light-dark( | ||
1px solid var(--mantine-color-gray-2), | ||
1px solid var(--mantine-color-dark-5) | ||
); | ||
} | ||
|
||
@media (min-width: 64em) and (max-width: 90em) { | ||
/* Add your styles for medium screens here */ | ||
.headerRoot { | ||
/* Example style */ | ||
height: 100px; | ||
} | ||
} | ||
|
||
.container { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
height: 100%; | ||
} | ||
|
||
.link { | ||
display: flex; | ||
align-items: center; | ||
height: 100%; | ||
padding-left: var(--mantine-spacing-md); | ||
padding-right: var(--mantine-spacing-md); | ||
padding-top: var(--mantine-spacing-xs); | ||
padding-bottom: var(--mantine-spacing-xs); | ||
text-decoration: none; | ||
color: light-dark(var(--mantine-color-black), var(--mantine-color-white)); | ||
font-weight: 500; | ||
font-size: var(--mantine-font-size-sm); | ||
border-radius: var(--mantine-radius-md); | ||
} | ||
|
||
.link { | ||
@mixin hover { | ||
background-color: light-dark(var(--mantine-color-red-0), var(--mantine-color-dark-6)); | ||
text-decoration: none; | ||
} | ||
} | ||
|
||
.disabledLink { | ||
color: var(--mantine-color-gray-6); | ||
} | ||
|
||
.subLink { | ||
width: 100%; | ||
text-decoration: none; | ||
color: light-dark(var(--mantine-color-black), var(--mantine-color-white)); | ||
border-radius: var(--mantine-radius-md); | ||
} | ||
|
||
.subLink { | ||
@mixin hover { | ||
background-color: light-dark(var(--mantine-color-gray-0), var(--mantine-color-dark-7)); | ||
} | ||
} | ||
|
||
.subLink:active { | ||
/* Define active styles */ | ||
} | ||
|
||
.dropdown { | ||
position: absolute; | ||
top: 60px; | ||
left: 0; | ||
right: 0; | ||
z-index: 0; | ||
border-top-right-radius: 0; | ||
border-top-left-radius: 0; | ||
border-top-width: 0; | ||
overflow: hidden; | ||
} | ||
|
||
/* Media Queries */ | ||
@media (min-width: 64em) { | ||
.burger, | ||
.dropdown, | ||
.hiddenDesktop { | ||
display: none; | ||
} | ||
} | ||
|
||
@media (max-width: 64em) { | ||
.hiddenMobile { | ||
display: none; | ||
} | ||
|
||
.link { | ||
height: 42px; | ||
width: 100%; | ||
} | ||
} |
Oops, something went wrong.