style: run format:apply

This commit is contained in:
2026-06-20 10:11:28 -03:00
parent a0ba8560f8
commit 91bf31bd03
5 changed files with 10 additions and 10 deletions
+1 -3
View File
@@ -122,9 +122,7 @@ export default function CharactersPage() {
) : ( ) : (
<div className={styles.grid}> <div className={styles.grid}>
{filtered.map((char) => { {filtered.map((char) => {
const unlocked = store.unlockedCharacters.includes( const unlocked = store.unlockedCharacters.includes(char.codeName);
char.codeName
);
const killer = isKiller(char.idx); const killer = isKiller(char.idx);
return ( return (
<div <div
+1 -3
View File
@@ -225,9 +225,7 @@ export default function CustomizationsPage() {
</button> </button>
</header> </header>
<div className={styles.tabs}> <div className={styles.tabs}>
{( {(['cosmetics', 'charms', 'badges', 'banners'] as Tab[]).map((t) => (
['cosmetics', 'charms', 'badges', 'banners'] as Tab[]
).map((t) => (
<button <button
key={t} key={t}
className={`${styles.tab} ${tab === t ? styles.tabActive : ''}`} className={`${styles.tab} ${tab === t ? styles.tabActive : ''}`}
+1 -1
View File
@@ -16,7 +16,7 @@ export default function RootLayout({
}>) { }>) {
return ( return (
<html lang='en'> <html lang='en'>
<link rel="icon" href="/favicon.ico" sizes="any" /> <link rel='icon' href='/favicon.ico' sizes='any' />
<body> <body>
<AppContainer> <AppContainer>
<div className={styles.layoutContainer}> <div className={styles.layoutContainer}>
+1 -1
View File
@@ -37,7 +37,7 @@ export default function AppContainer({
Make sure the client is running. Make sure the client is running.
</p> </p>
<p> <p>
Don't have it? { } Don't have it? {}
<a <a
href='https://git.neru.rip/neru/HexUnlocked/releases/latest' href='https://git.neru.rip/neru/HexUnlocked/releases/latest'
target='_blank' target='_blank'
+6 -2
View File
@@ -24,7 +24,9 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; 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; border-radius: 4px;
min-width: 400px; min-width: 400px;
animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
@@ -36,7 +38,9 @@
color: #ffffff; color: #ffffff;
letter-spacing: 0.05em; letter-spacing: 0.05em;
margin: 0 0 0.5rem 0; 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; font-family: 'Oswald', sans-serif;
} }