mirror of https://github.com/Kylart/KawAnime.git
Fix general layout for info page
This commit is contained in:
parent
accdd4b75e
commit
c97525bea2
|
@ -14,9 +14,9 @@
|
||||||
|
|
||||||
v-divider
|
v-divider
|
||||||
|
|
||||||
v-row(justify='space-between')
|
v-row(justify='space-between', no-gutters)
|
||||||
//- Center part:
|
//- Center part:
|
||||||
v-col.pb-0
|
v-col.pb-0(cols='8')
|
||||||
//- -- Synopsis
|
//- -- Synopsis
|
||||||
v-container(fluid)
|
v-container(fluid)
|
||||||
.body-2.synopsis(
|
.body-2.synopsis(
|
||||||
|
@ -28,8 +28,11 @@
|
||||||
//- -- Genres and studios
|
//- -- Genres and studios
|
||||||
v-row(justify='space-between')
|
v-row(justify='space-between')
|
||||||
|
|
||||||
v-col(cols='5').ellipsis
|
v-col(cols='5')
|
||||||
i {{ info.genres.join(', ') }}
|
v-tooltip(top)
|
||||||
|
template(v-slot:activator='{ on }')
|
||||||
|
i.ellipsis {{ info.genres.join(', ') }}
|
||||||
|
span {{ info.genres.join(', ') }}
|
||||||
|
|
||||||
v-col(cols='5')
|
v-col(cols='5')
|
||||||
v-tooltip(top)
|
v-tooltip(top)
|
||||||
|
@ -45,7 +48,8 @@
|
||||||
//- Right part:
|
//- Right part:
|
||||||
//- -- Status sentence
|
//- -- Status sentence
|
||||||
//- -- Mark
|
//- -- Mark
|
||||||
v-col.d-flex.flex-column.justify-space-around.align-center(cols='3')
|
v-col(cols='3')
|
||||||
|
.d-flex.flex-column.justify-space-around.align-center
|
||||||
v-container(fluid)
|
v-container(fluid)
|
||||||
.caption {{ info.sentence }}
|
.caption {{ info.sentence }}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue