Skip to content

Commit

Permalink
update availability status and enhanced styling unavailable-pill
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniosubasic committed Dec 19, 2024
1 parent 1d1b589 commit 2294377
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Taskbar from './components/Taskbar.vue'
</script>

<template>
<AvailabilityPill :available="true" availableText="Open for Internships" unavailableText="Currently employed" />
<AvailabilityPill :available="false" availableText="Open for Internships" unavailableText="Employed for Internship Position 2025" />
<Intro class="intro" forename="Antonio" surename="Subašić" />
<p class="bio">A passionate Computer Science student specializing in software development and problem-solving, with a focus on building efficient, scalable applications and crafting innovative digital solutions.</p>
<Taskbar
Expand Down
12 changes: 6 additions & 6 deletions src/components/AvailabilityPill.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ onMounted(() => {
}
.pill.unavailable {
background-color: #fff0f0;
color: #d8000c;
background-color: #fff9c4;
color: #ff9114;
}
.dot {
Expand All @@ -67,7 +67,7 @@ onMounted(() => {
}
.dot.unavailable {
background-color: #a60005;
background-color: #ff9114;
}
@keyframes expand {
Expand Down Expand Up @@ -97,16 +97,16 @@ onMounted(() => {
}
.pill.unavailable {
background-color: #2e0000;
color: #ff0d00;
background-color: #4e432e;
color: #fff59d;
}
.dot.available {
background-color: #00ff0d;
}
.dot.unavailable {
background-color: #ff0d00;
background-color: #fff59d;
}
.animate {
Expand Down

0 comments on commit 2294377

Please sign in to comment.