Browse Source

Fix box-model;

modulation
Nero Ignis 3 years ago
parent
commit
9ab4122bd6
  1. 6
      src/views/Notes.vue

6
src/views/Notes.vue

@ -27,8 +27,8 @@ @@ -27,8 +27,8 @@
</span>
</div>
<div id="note-container" class="row">
<div v-for="(note, noteIndex) in $store.state.notes" v-bind:key="noteIndex">
<div id="note-container">
<span v-for="(note, noteIndex) in $store.state.notes" v-bind:key="noteIndex">
<div class="col-lg-4 col-md-6" v-if="colorToFilter === '' || note.color === colorToFilter">
<div class="card">
<div class="card-body note" :style="'background-color:' + note.color ?? '#ffea77'">
@ -50,7 +50,7 @@ @@ -50,7 +50,7 @@
</div>
</div>
</div>
</div>
</span>
</div>
</div>
</template>

Loading…
Cancel
Save