Compare commits
2 Commits
a0ba8560f8
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| ea1cf8c1f0 | |||
| 91bf31bd03 |
@@ -122,9 +122,7 @@ export default function CharactersPage() {
|
||||
) : (
|
||||
<div className={styles.grid}>
|
||||
{filtered.map((char) => {
|
||||
const unlocked = store.unlockedCharacters.includes(
|
||||
char.codeName
|
||||
);
|
||||
const unlocked = store.unlockedCharacters.includes(char.codeName);
|
||||
const killer = isKiller(char.idx);
|
||||
return (
|
||||
<div
|
||||
|
||||
@@ -67,10 +67,10 @@ export default function FlatCategory({
|
||||
<button className={shared.lockAllBtn} onClick={onLockAll}>
|
||||
Lock all
|
||||
</button>
|
||||
<button className={styles.pageActionBtn} onClick={onUnlockPage}>
|
||||
<button className={shared.unlockAllBtn} onClick={onUnlockPage}>
|
||||
Unlock visible
|
||||
</button>
|
||||
<button className={styles.pageActionBtn} onClick={onLockPage}>
|
||||
<button className={shared.lockAllBtn} onClick={onLockPage}>
|
||||
Lock visible
|
||||
</button>
|
||||
</div>
|
||||
|
||||
@@ -225,9 +225,7 @@ export default function CustomizationsPage() {
|
||||
</button>
|
||||
</header>
|
||||
<div className={styles.tabs}>
|
||||
{(
|
||||
['cosmetics', 'charms', 'badges', 'banners'] as Tab[]
|
||||
).map((t) => (
|
||||
{(['cosmetics', 'charms', 'badges', 'banners'] as Tab[]).map((t) => (
|
||||
<button
|
||||
key={t}
|
||||
className={`${styles.tab} ${tab === t ? styles.tabActive : ''}`}
|
||||
|
||||
+1
-1
@@ -16,7 +16,7 @@ export default function RootLayout({
|
||||
}>) {
|
||||
return (
|
||||
<html lang='en'>
|
||||
<link rel="icon" href="/favicon.ico" sizes="any" />
|
||||
<link rel='icon' href='/favicon.ico' sizes='any' />
|
||||
<body>
|
||||
<AppContainer>
|
||||
<div className={styles.layoutContainer}>
|
||||
|
||||
@@ -37,7 +37,7 @@ export default function AppContainer({
|
||||
Make sure the client is running.
|
||||
</p>
|
||||
<p>
|
||||
Don't have it? { }
|
||||
Don't have it? {}
|
||||
<a
|
||||
href='https://git.neru.rip/neru/HexUnlocked/releases/latest'
|
||||
target='_blank'
|
||||
|
||||
@@ -24,7 +24,9 @@
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(163, 0, 0, 0.1);
|
||||
box-shadow:
|
||||
0 10px 30px rgba(0, 0, 0, 0.8),
|
||||
0 0 15px rgba(163, 0, 0, 0.1);
|
||||
border-radius: 4px;
|
||||
min-width: 400px;
|
||||
animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
|
||||
@@ -36,7 +38,9 @@
|
||||
color: #ffffff;
|
||||
letter-spacing: 0.05em;
|
||||
margin: 0 0 0.5rem 0;
|
||||
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(163, 0, 0, 0.3);
|
||||
text-shadow:
|
||||
2px 2px 5px rgba(0, 0, 0, 0.8),
|
||||
0 0 10px rgba(163, 0, 0, 0.3);
|
||||
font-family: 'Oswald', sans-serif;
|
||||
}
|
||||
|
||||
|
||||
@@ -33,27 +33,6 @@
|
||||
border-bottom-color: #a30000;
|
||||
}
|
||||
|
||||
/*
|
||||
page btns
|
||||
*/
|
||||
.pageActionBtn {
|
||||
background: transparent;
|
||||
border: 1px solid #1e1e1e;
|
||||
color: #3a3a3a;
|
||||
padding: 0.6rem 1rem;
|
||||
font-family: 'Oswald', sans-serif;
|
||||
font-size: 0.75rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08em;
|
||||
cursor: pointer;
|
||||
transition: all 0.15s ease;
|
||||
}
|
||||
|
||||
.pageActionBtn:hover {
|
||||
color: #666666;
|
||||
border-color: #2e2e2e;
|
||||
}
|
||||
|
||||
/*
|
||||
char picker
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user