oss-wec / wisdm

Wildlife information system for data management
1 stars 1 forks source link

Selectize dropdown left padding issues #25

Closed kissmygritts closed 7 years ago

kissmygritts commented 7 years ago

Similar to issue #6, or I should say, why I tried to move away from vue-multiselect.

The left padding is due to some of the styling within the collapse component. I'll look into it further to try and figure it out. I might have something to do with the Bulma.css and multiselect css conflicting.

kissmygritts commented 7 years ago

the <div class="content">...</div> is the culprit. When this div is removed the issue resolves itself.

Collapse.vue

<div class="card-content" v-if="visible">
      <div class="content"> 
        <slot name="content"> content </slot>
      </div>
    </div>