Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ export default class CustomTopicListsDropdown extends Component {

<template>
{{#if this.currentUser.custom_topic_lists.length}}
<li class="last-item">
<li class="custom-list-item">
<ComboBox
@options={{this.comboBoxOptions}}
@content={{this.content}}
@value={{this.value}}
@onChange={{this.onInput}}
class="tag-drop list-drop"
class="tag-drop list-drop custom-list-dropdown"
/>
</li>
{{/if}}
Expand Down
37 changes: 21 additions & 16 deletions assets/stylesheets/common/common.scss
Original file line number Diff line number Diff line change
@@ -1,28 +1,33 @@
.list-drop {
ul {
li {
display: flex;
align-items: center !important;
}
}
}

// Custom List Banner
.custom-list-banner {
display: flex;
justify-content: center;
width: 100%;

text-align: center;
&.banner-color {
background-color: transparent;
}
.custom-list-banner-contents {
max-width: 500px;
padding: 40px;
}
}

.banner-color {
background-color: transparent;
}

.last-item {
order: 99;
// Custom Topic List
.category-breadcrumb {
.custom-list-label {
display: inline-flex;
padding: 0.5em;
}
.custom-list-dropdown {
ul {
li {
display: flex;
align-items: center !important;
}
}
}
.custom-list-item {
order: 99;
}
}