1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-29 20:54:19 +00:00

* Correction de l'impression en mode nuit

* Correction de l'impression du bestiaire personnel
fix #17
This commit is contained in:
Maxime Moraine 2020-04-29 16:57:46 +02:00
parent 7f6ae54432
commit b556690f7d
2 changed files with 13 additions and 1 deletions

View file

@ -2,7 +2,7 @@
<main class="page content">
<div class="theme-default-content">
<template v-if="monsters.length > 0">
<MonsterCard v-for="(monster, idx) in monsters" :monster="monster" :showActions="true" :key="idx">
<MonsterCard class="d-print-none" v-for="(monster, idx) in monsters" :monster="monster" :showActions="true" :key="idx">
</MonsterCard>
<div class="d-none d-print-block" v-for="monster in monsters">
<div>

View file

@ -64,4 +64,16 @@
}
}
}
.theme--dark {
&.v-application {
background-color: #fff;
color: #000;
h1, h2, h3, h4, h5, h6, a {
color: $color-dragon;
}
}
}
}