add pointer cursor to board card

This commit is contained in:
Gamebrary 2020-08-26 09:32:38 -07:00
parent 8b1d13779f
commit 1449f59c44
2 changed files with 5 additions and 1 deletions

View file

@ -16,7 +16,7 @@
<b-card
:title="board.name"
tag="article"
class="m-2"
class="m-2 clickable"
@click="viewBoard(board.id)"
>
<b-card-text>

View file

@ -15,3 +15,7 @@
background-color: $gray-300;
}
}
.clickable {
cursor: pointer;
}