Fix product header styles

This commit is contained in:
Prateeksha Singh 2018-08-06 19:13:10 +05:30
parent d3da401ef4
commit 658d1bbae2
2 changed files with 9 additions and 2 deletions

View File

@ -9,7 +9,7 @@ function get_item_card_container_html(items, title='', get_item_html = get_item_
const items_html = (items || []).map(item => get_item_html(item)).join(''); const items_html = (items || []).map(item => get_item_html(item)).join('');
const title_html = title const title_html = title
? `<div class="col-sm-12 margin-bottom"> ? `<div class="col-sm-12 margin-bottom">
<b>${title}</b> <h4>${title}</h4>
</div>` </div>`
: ''; : '';
@ -140,4 +140,4 @@ export {
get_local_item_card_html, get_local_item_card_html,
get_rating_html, get_rating_html,
make_search_bar, make_search_bar,
} }

View File

@ -210,6 +210,13 @@ body[data-route^="marketplace/"] {
border-bottom: none; border-bottom: none;
} }
.hub-card-container {
h4 {
font-weight: 500;
margin-top: 32px
}
}
.hub-item-container { .hub-item-container {
overflow: hidden; overflow: hidden;
} }