Skip to content

Commit dc49454

Browse files
authored
🎨 Improve the layout of the empty market list #17358 (comment) (#17448)
1 parent 2e4c491 commit dc49454

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/config/bazaar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1137,6 +1137,6 @@ type="checkbox">
11371137
html += item.outerHTML;
11381138
});
11391139
}
1140-
element.innerHTML = `<div class="b3-cards">${html || `<ul class="b3-list b3-list--background"><li class="b3-list--empty">${window.siyuan.languages.emptyContent}</li></ul>`}</div>`;
1140+
element.innerHTML = `<div class="b3-cards${html ? "" : " b3-cards--nowrap"}">${html || `<ul class="b3-list b3-list--background"><li class="b3-list--empty">${window.siyuan.languages.emptyContent}</li></ul>`}</div>`;
11411141
}
11421142
};

0 commit comments

Comments
 (0)