Skip to content

Commit

Permalink
Add webkit-filter
Browse files Browse the repository at this point in the history
  • Loading branch information
Thrillberg committed Dec 22, 2024
1 parent 9cd9635 commit 7b8bfa5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions app/javascript/src/assets/styles.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
.hoverable {
stroke-width: 0.5px;
filter: brightness(0.7);
-webkit-filter: brightness(0.7);
}

.hoverable:hover {
filter: url(#brightness);
-webkit-filter: url(#brightness);
}

.tooltip .tooltip-text {
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/src/views/Game.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
Clone game
</v-btn>
</v-col>
<v-col class="text-right my-auto mx-2">
<v-col class="text-right my-auto mx-2" v-if="gameData.timeCommitment">

Check warning on line 77 in app/javascript/src/views/Game.vue

View workflow job for this annotation

GitHub Actions / build (16.x)

Attribute "v-if" should go before "class"

Check warning on line 77 in app/javascript/src/views/Game.vue

View workflow job for this annotation

GitHub Actions / build (16.x)

'v-if' should be on a new line
<span><v-icon icon="$timerSand" /> <b>Time Commitment:</b> {{ timeCommitment(gameData.timeCommitment) }}</span>
</v-col>
<v-col
Expand Down

0 comments on commit 7b8bfa5

Please sign in to comment.