Browse Source

Remove classes for responsiveness due to canvas-card;

modulation
1nicerOli 3 years ago
parent
commit
d6053fb205
  1. 2
      src/views/Notes.vue

2
src/views/Notes.vue

@ -32,7 +32,7 @@ @@ -32,7 +32,7 @@
<div class="row">
<div id="note-container">
<template 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 v-if="colorToFilter === '' || note.color === colorToFilter">
<div class="card">
<div class="card-body note" :style="'background-color:' + note.color ?? '#ffea77'">
<textarea v-model="note.body" spellcheck="false"

Loading…
Cancel
Save