Skip to content

Commit

Permalink
Final tweaks - Remove Calendar/List toggle
Browse files Browse the repository at this point in the history
Added subtle border to events to help differentiate events that are
touching eachother.
Commented out Calendar/List toggle for now, until the list feature is
implemented.
  • Loading branch information
keifererikson committed Jun 5, 2024
1 parent 100c60e commit 1b2432e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions components/app/Calendar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ const onEventClick = (event: any, e: any) => {
</template>
</vue-cal>

<!-- TODO: Implement the list view
<div
id="calendar-list-toggle"
class="w-[180px] bg-gray-400/20 rounded-lg absolute top-[158px] left-[22px]"
Expand Down Expand Up @@ -93,7 +94,7 @@ const onEventClick = (event: any, e: any) => {
List
</label>
</div>
</div>
</div> -->

<AppModal
id="event-modal"
Expand Down Expand Up @@ -165,7 +166,7 @@ const onEventClick = (event: any, e: any) => {
}
.vuecal__event {
@apply rounded flex flex-col justify-center p-2 bg-primary text-white;
@apply flex flex-col justify-center p-2 bg-primary text-white border border-gray-400/25;
}
.vuecal__event-content {
Expand Down

0 comments on commit 1b2432e

Please sign in to comment.