Skip to content

Commit

Permalink
🍱 [Earwurm] Change image / remove NA2012 / fix minor bugs (#63)
Browse files Browse the repository at this point in the history
* 🐛 [Navigation] Keep above intro content

* 🍱 [Earwurm] Change asset
  • Loading branch information
beefchimi authored Jul 28, 2024
1 parent 2c16b99 commit 004edd1
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 16 deletions.
Binary file modified public/assets/bg-earwurm.webp
Binary file not shown.
Binary file removed public/assets/bg-na2012.webp
Binary file not shown.
3 changes: 2 additions & 1 deletion src/components/Navigation.astro
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ const {id, items = []} = Astro.props;

.List {
position: fixed;
z-index: var(--index-thermosphere);
/* 1 above the Intro content */
z-index: calc(var(--index-thermosphere) + 1);
bottom: var(--nav-list-bottom);
right: 0;

Expand Down
1 change: 0 additions & 1 deletion src/components/ProjectLogo.astro
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ const iconProps = {
}

:global(#Draggable),
:global(#NA2012),
:global(#NorthernArmy) {
--project-logo-size: 16rem;

Expand Down
15 changes: 1 addition & 14 deletions src/data/sections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const earwurm: ProjectEntry = {
name: 'Earwurm',
description: 'Easier web audio for UI sound effects',
thumbnail: '/assets/bg-earwurm.webp',
channels: [231, 131, 93],
channels: [237, 0, 55],
logo: 'LogoEarwurm',
url: 'https://beefchimi.github.io/earwurm/',
attribution: 'Curtis Dulmage',
Expand All @@ -93,18 +93,6 @@ const fringe: ProjectEntry = {
inactive: true,
};

const na2012: ProjectEntry = {
id: 'NA2012',
name: 'NA 2012',
description: 'Legacy Northern Army 2012',
thumbnail: '/assets/bg-na2012.webp',
channels: [234, 72, 72],
logo: 'LogoNorthernArmy',
attribution: 'Rene Antunes',
inhouse: ['Northern Army', 'https://northernarmy.com'],
inactive: true,
};

const northernArmy: ProjectEntry = {
id: 'NorthernArmy',
name: 'Northern Army',
Expand Down Expand Up @@ -209,6 +197,5 @@ export const sections: [intro: SectionEntry, ...projects: ProjectEntry[]] = [
tetchi,
chicken,
draggable,
na2012,
commerceAwards,
];

0 comments on commit 004edd1

Please sign in to comment.