Skip to content

Commit

Permalink
handle lists of long names on scoresheet links
Browse files Browse the repository at this point in the history
  • Loading branch information
swantzter committed Jul 21, 2023
1 parent c26d692 commit 0a87853
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ScoresheetLink.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<router-link
v-if="scoresheet"
class="grid grid-cols-[3rem,auto] grid-rows-4 rounded text-white p-2"
class="grid grid-cols-[3rem,auto] grid-rows-[max-content,max-content,max-content,max-content] rounded text-white p-2"
:class="{
'bg-green-500': color === 'green',
'hover:bg-green-600': color === 'green',
Expand Down
2 changes: 1 addition & 1 deletion src/components/ServoEntryLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}"
>
<a
class="w-full relative grid grid-cols-[3rem,auto,3rem] grid-rows-4 p-2"
class="w-full relative grid grid-cols-[3rem,auto,3rem] grid-rows-[max-content,max-content,max-content,max-content] p-2"
:class="{
'hover:bg-green-600': color === 'green',
'hover:bg-indigo-600': color === 'indigo',
Expand Down

0 comments on commit 0a87853

Please sign in to comment.