Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🍱 [Earwurm] Change image / remove NA2012 / fix minor bugs #63

Merged
merged 2 commits into from
Jul 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,
];