Increase font size of download instructions.
- Partly fixed invisible scroll on small screens in CSS.
This commit is contained in:
@@ -8,6 +8,7 @@
|
|||||||
padding: 8px;
|
padding: 8px;
|
||||||
color: var(--bg-color);
|
color: var(--bg-color);
|
||||||
z-index: 2000;
|
z-index: 2000;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.model-manager .comfy-modal-content {
|
.model-manager .comfy-modal-content {
|
||||||
|
|||||||
@@ -2645,7 +2645,7 @@ class DownloadTab {
|
|||||||
$el("div.download-model-infos", {
|
$el("div.download-model-infos", {
|
||||||
$: (el) => (this.elements.infos = el),
|
$: (el) => (this.elements.infos = el),
|
||||||
}, [
|
}, [
|
||||||
$el("div", ["Input a URL to select a model to download."]),
|
$el("h1", ["Input a URL to select a model to download."]),
|
||||||
]),
|
]),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
@@ -2842,7 +2842,7 @@ class DownloadTab {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
if (modelInfosHtml.length === 0) {
|
if (modelInfosHtml.length === 0) {
|
||||||
modelInfosHtml.push($el("div", ["No results found."]));
|
modelInfosHtml.push($el("h1", ["No models found."]));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (modelInfosHtml.length === 1) {
|
if (modelInfosHtml.length === 1) {
|
||||||
|
|||||||
Reference in New Issue
Block a user