Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Fix dark theme compatibility and sizing
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <jus@bitgrid.net>
  • Loading branch information
juliushaertl committed Aug 21, 2020
1 parent df011df commit 4439302
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/CollectionList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<ul v-if="collections && type && id" id="collection-list" class="collection-list">
<li @click="showSelect">
<div class="avatar">
<span class="icon-projects icon-white" />
<span class="icon-projects" />
</div>
<div id="collection-select-container">
<Multiselect ref="select" v-model="value" :options="options"
Expand Down Expand Up @@ -220,6 +220,9 @@ export default {
</script>

<style lang="scss" scoped>
.collection-list * {
box-sizing: border-box;
}
.collection-list > li {
display: flex;
align-items: start;
Expand Down Expand Up @@ -280,7 +283,7 @@ export default {
height: 32px;
margin: 0;
padding: 8px;
background-color: var(--color-text-maxcontrast);
background-color: var(--color-background-dark);
margin-top: 30px;
}
Expand Down

0 comments on commit 4439302

Please sign in to comment.