In the previous version I could click on the number of the remaining card and it would change to a dot
My temporary CSS workaround to hide the ‘number’ of remaining cards -
.queue__badge{
color: transparent;
}
.queue__badge:hover {
color: #292936;
}
Additionally, to remove/hide the “Flashcards for” -
span.sm\:inline.whitespace-nowrap.hidden.ml-2 {
display: none;
}
div.queue__title__middle.font-semibold.flex.gap-2.items-center {
color: white;
}
4 Likes
Wow… Thank you… !! I didn’t think of this solution…