mirror of
https://github.com/romancm/gamebrary
synced 2024-11-23 11:43:07 +00:00
adjust h tags
This commit is contained in:
parent
f0c8a3b94d
commit
4148e45487
4 changed files with 6 additions and 6 deletions
|
@ -1,15 +1,15 @@
|
|||
<template lang="html">
|
||||
<div>
|
||||
<h3
|
||||
<h1
|
||||
v-if="game.alternative_names"
|
||||
class="cursor-pointer m-0"
|
||||
v-b-toggle.altTitles
|
||||
>
|
||||
{{ game.name }}
|
||||
<!-- {{ 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">
|
||||
<div
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
<b-card-body body-class="p-2">
|
||||
<b-card-title
|
||||
:class="`mb-0 ${highlightCompletedGame ? 'text-success' : ''}`"
|
||||
title-tag="small"
|
||||
title-tag="h5"
|
||||
>
|
||||
{{ game.name }}
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
<b-card-body body-class="p-2">
|
||||
<b-card-title
|
||||
:class="`mb-0 ${highlightCompletedGame ? 'text-success' : ''}`"
|
||||
title-tag="h6"
|
||||
title-tag="h4"
|
||||
>
|
||||
{{ game.name }}
|
||||
</b-card-title>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<b-card-body body-class="p-2" v-if="game && game.name">
|
||||
<b-card-title
|
||||
:class="`mb-0 ${highlightCompletedGame ? 'text-success' : ''}`"
|
||||
title-tag="h6"
|
||||
title-tag="h4"
|
||||
>
|
||||
{{ game.name }}
|
||||
</b-card-title>
|
||||
|
|
Loading…
Reference in a new issue