Skip to content

Commit

Permalink
feat: make queue card clickable, closes #577
Browse files Browse the repository at this point in the history
  • Loading branch information
felixmosh committed Jun 6, 2023
1 parent 0709a6e commit 5cc1446
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions packages/ui/src/components/QueueCard/QueueCard.module.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
.queueCard {
flex-direction: column;
gap: 0.5rem;
position: relative;
}

.link {
color: inherit;
text-decoration: none;
}

.link:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}

0 comments on commit 5cc1446

Please sign in to comment.