adjust h tags

This commit is contained in:
Gamebrary 2022-05-18 22:01:39 -07:00
parent f0c8a3b94d
commit 4148e45487
4 changed files with 6 additions and 6 deletions

View file

@ -1,15 +1,15 @@
<template lang="html"> <template lang="html">
<div> <div>
<h3 <h1
v-if="game.alternative_names" v-if="game.alternative_names"
class="cursor-pointer m-0" class="cursor-pointer m-0"
v-b-toggle.altTitles v-b-toggle.altTitles
> >
{{ game.name }} {{ game.name }}
<!-- {{ game.alternative_names.length }} Alternative titles <i class="fa-solid fa-caret-down" /> --> <!-- {{ game.alternative_names.length }} Alternative titles <i class="fa-solid fa-caret-down" /> -->
</h3> </h1>
<h3 v-else>{{ game.name }}</h3> <h1 v-else>{{ game.name }}</h1>
<b-collapse id="altTitles"> <b-collapse id="altTitles">
<div <div

View file

@ -18,7 +18,7 @@
<b-card-body body-class="p-2"> <b-card-body body-class="p-2">
<b-card-title <b-card-title
:class="`mb-0 ${highlightCompletedGame ? 'text-success' : ''}`" :class="`mb-0 ${highlightCompletedGame ? 'text-success' : ''}`"
title-tag="small" title-tag="h5"
> >
{{ game.name }} {{ game.name }}

View file

@ -22,7 +22,7 @@
<b-card-body body-class="p-2"> <b-card-body body-class="p-2">
<b-card-title <b-card-title
:class="`mb-0 ${highlightCompletedGame ? 'text-success' : ''}`" :class="`mb-0 ${highlightCompletedGame ? 'text-success' : ''}`"
title-tag="h6" title-tag="h4"
> >
{{ game.name }} {{ game.name }}
</b-card-title> </b-card-title>

View file

@ -8,7 +8,7 @@
<b-card-body body-class="p-2" v-if="game && game.name"> <b-card-body body-class="p-2" v-if="game && game.name">
<b-card-title <b-card-title
:class="`mb-0 ${highlightCompletedGame ? 'text-success' : ''}`" :class="`mb-0 ${highlightCompletedGame ? 'text-success' : ''}`"
title-tag="h6" title-tag="h4"
> >
{{ game.name }} {{ game.name }}
</b-card-title> </b-card-title>