- Fixed typo, spacing issues, and cursor pointer on card layout

This commit is contained in:
Alexis
2020-06-17 17:50:20 +02:00
parent 8519ba2b9f
commit 87f42d6eaf
3 changed files with 10 additions and 5 deletions

View File

@@ -51,7 +51,7 @@
<input type="text" class="form-control" name="spell_cost" id="spell_cost" placeholder="(32 caractères max.)" v-model="spell.cost">
</div>
<div class="form-group">
<label for="spell_variables" class="font-weight-bold col-form-label">Variables(s)&nbsp;:</label>
<label for="spell_variables" class="font-weight-bold col-form-label">Variable(s)&nbsp;:</label>
<select class="form-control" id="spell_variables" name="spell_variables" multiple v-model="spell.spell_variable_ids_value">
<option v-for="(variable,index) in all_variables" :key="index" :value="'variable_' + variable.id">{{variable.description}}</option>
</select>