Skip to content

Commit

Permalink
Merge pull request #192 from ericmasiello/refator/layers
Browse files Browse the repository at this point in the history
Cleanup
  • Loading branch information
ericmasiello authored Nov 27, 2023
2 parents 6988cf6 + 5ac8ffa commit 4524efb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/components/homepage/Resume/Resume.astro
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ const GridColumnWrapper = format === 'web' ? 'div' : Fragment;
</Element>
<style>
.resume {
--resume-border: rgba(212, 207, 209, 0.5);
--resume-v-gap: 1.25rem;
--resume-h-gap: 2rem;

Expand Down
2 changes: 1 addition & 1 deletion src/pages/resume.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import BaseHead from '../components/BaseHead.astro';
import Resume from '../components/homepage/Resume/Resume.astro';
import { SITE_TITLE, SITE_DESCRIPTION } from '../config';
import { SITE_TITLE } from '../config';
import VisuallyHidden from '../components/VisuallyHidden.astro';
---

Expand Down
7 changes: 2 additions & 5 deletions src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,13 @@
--font-header-weight-bold: 700;
--font-size-body: 0.875rem;
--color-bg: #fff;
--color-base: #424141;
--color-base: #2d2d2d;
--color-muted: #787575;
--color-brand: #c90044;
--color-brand-invert: #36ffbb;
--color-highlight: #5f2058;
--color-link: rgba(201, 0, 68, 0.8);
--color-logo: #3b3b3b;
--color-gallery-border: rgba(212, 207, 209, 0.5);
--color-gallery-border-highlight: #d4cfd1;
--color-gallery-bg: #e0dcde;
--content-max-width: 100rem; /* 1600px */
--h-space: 2.5rem;
}
Expand All @@ -26,7 +23,7 @@ html {
box-sizing: border-box;
background-color: var(--color-bg);
font-family: var(--font-base);
color: var(--color--base);
color: var(--color-base);
font-size: 100%;
}

Expand Down

0 comments on commit 4524efb

Please sign in to comment.