Skip to content

Commit

Permalink
chore: content updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rxyhn committed Sep 15, 2024
1 parent 7028924 commit fe5f459
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
16 changes: 13 additions & 3 deletions cv.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,32 +94,42 @@
],
"skills": {
"technologies": [
"Ansible",
"AWS",
"Docker",
"Django",
"Express.js",
"Figma",
"Flask",
"GraphQL",
"Gin",
"Git",
"gRPC",
"Jenkins",
"Laravel",
"Linux",
"MongoDB",
"MySQL",
"Nix Package Manager",
"Next.js",
"Node.js",
"PostgreSQL",
"Postman",
"React",
"Spring Boot",
"Tailwind"
"Tailwind",
"Terraform"
],
"programming_languages": [
"C",
"C#",
"C++",
"CSS",
"Go",
"HTML",
"Java",
"JavaScript",
"Lua",
"Nix",
"PHP",
"Python",
"Shell",
"TypeScript"
Expand Down
2 changes: 1 addition & 1 deletion src/components/ExpandButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function ExpandButton({ children }: ExpandButtonProps) {
return (
<div className="relative">
<div
className={`relative flex flex-col gap-4 max-sm:!h-auto md:after:absolute md:after:bottom-0 md:after:h-12 md:after:w-full md:after:bg-gradient-to-t md:after:from-white md:after:content-[''] dark:md:after:from-black ${
className={`relative flex flex-col gap-4 after:absolute after:bottom-0 after:h-12 after:w-full after:bg-gradient-to-t after:from-white after:content-[''] dark:after:from-black max-sm:!h-auto ${
expanded ? "after:hidden" : ""
}`}
style={{ maxHeight: expanded ? "none" : "50px", overflow: "hidden" }}
Expand Down
4 changes: 2 additions & 2 deletions src/components/sections/Experience.astro
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ import { work } from "@cv";
{/* Timeline */}
<div class="relative hidden items-start justify-center sm:flex">
{!isLastItem && (
<div class="absolute top-2 h-full w-px bg-gray-300 dark:bg-gray-700" />
<div class="absolute top-2 h-full w-px bg-black/25 dark:bg-white/25" />
)}
<div class="relative z-10 mt-2 h-3 w-3 rounded-full bg-gray-400 dark:bg-gray-600" />
<div class="relative z-10 mt-2 h-3 w-3 rounded-full bg-black dark:bg-white" />
</div>

{/* Content */}
Expand Down

0 comments on commit fe5f459

Please sign in to comment.