diff --git a/src/assets/community.svg b/src/assets/community.svg index af30158..a7655e1 100644 --- a/src/assets/community.svg +++ b/src/assets/community.svg @@ -1,4 +1,4 @@ - + diff --git a/src/assets/current.svg b/src/assets/current.svg index 7a80504..e99a8ba 100644 --- a/src/assets/current.svg +++ b/src/assets/current.svg @@ -1,4 +1,4 @@ - + diff --git a/src/assets/education.svg b/src/assets/education.svg index 1d3b498..c84aa4c 100644 --- a/src/assets/education.svg +++ b/src/assets/education.svg @@ -1,4 +1,4 @@ - + diff --git a/src/assets/mantras.svg b/src/assets/mantras.svg index 2a7a2e5..084d7b4 100644 --- a/src/assets/mantras.svg +++ b/src/assets/mantras.svg @@ -1,4 +1,4 @@ - + diff --git a/src/assets/past.svg b/src/assets/past.svg index 8ad5c87..578bca1 100644 --- a/src/assets/past.svg +++ b/src/assets/past.svg @@ -1,4 +1,4 @@ - + diff --git a/src/components/BoxLines.astro b/src/components/BoxLines.astro index 7ae70c0..2df1d08 100644 --- a/src/components/BoxLines.astro +++ b/src/components/BoxLines.astro @@ -1,6 +1,7 @@ --- const random = Math.floor(Math.random() * 10000); const boxLineRef = `boxLines${random}`; +const { small, ...rest } = Astro.props; ---
-
-
-
-
-
-
+ {small ? ( + +
+
+
+
+ ) : ( + +
+
+
+
+ )}
diff --git a/src/components/Intro.astro b/src/components/Intro.astro index bd7a3d4..d552043 100644 --- a/src/components/Intro.astro +++ b/src/components/Intro.astro @@ -5,15 +5,16 @@ import AboutSneak from "@/assets/about.gif"; import BoxLines from "./BoxLines.astro"; --- -
+
+
diff --git a/src/components/Section.astro b/src/components/Section.astro index f1bbda9..0b3b123 100644 --- a/src/components/Section.astro +++ b/src/components/Section.astro @@ -4,16 +4,16 @@ import About from "@/assets/about.svg?raw"; import Experience from "@/assets/experience.svg?raw"; import Projects from "@/assets/projects.svg?raw"; import Contact from "@/assets/contact.svg?raw"; +import BoxLines from "./BoxLines.astro"; --- -
-
-
+
+
+
+ +
+
+
diff --git a/src/styles/global.css b/src/styles/global.css index 2d9c02e..eb27af4 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -5,7 +5,7 @@ @layer base { :root { --slate-0: 0deg 0% 100%; - --slate-10: 233deg 32% 80%; + --slate-10: 233deg 100% 96%; --slate-20: 231deg 19% 66%; --slate-30: 233deg 22% 41%; --slate-40: 231deg 26% 28%; @@ -27,7 +27,7 @@ --text-standard: var(--slate-50); --text-subtle: var(--slate-30); - --border-divider: var(--slate-10); + --border-divider: var(--slate-20); --redact-bg: 0deg 0% 98%; }