subreddits-page: fix horizontal scrollbar appeared when there's a subreddit with no images
Some checks failed
/ push (push) Has been cancelled

This commit is contained in:
Tigor Hutasuhut 2024-05-13 16:23:07 +07:00
parent f98bed2e69
commit 515704f018

View file

@ -53,7 +53,7 @@ templ SubredditCard(c *views.Context, data *models.Subreddit) {
/> />
</figure> </figure>
} else { } else {
<figure class="p-8"> <figure class="p-8 mx-auto">
@imagePlaceholder() @imagePlaceholder()
</figure> </figure>
} }
@ -65,8 +65,8 @@ templ SubredditCard(c *views.Context, data *models.Subreddit) {
} }
templ imagePlaceholder() { templ imagePlaceholder() {
<svg width="256" height="256" xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg" class="w-full" viewBox="0 0 120 120" fill="none">
<rect x="2" y="2" width="252" height="252" style="fill:#DEDEDE;stroke:#555555;stroke-width:2"></rect> <rect width="120" height="120" fill="#EFF1F3"></rect>
<text x="50%" y="50%" font-size="18" text-anchor="middle" alignment-baseline="middle" font-family="monospace, sans-serif" fill="#555555">256×256</text> <path fill-rule="evenodd" clip-rule="evenodd" d="M33.2503 38.4816C33.2603 37.0472 34.4199 35.8864 35.8543 35.875H83.1463C84.5848 35.875 85.7503 37.0431 85.7503 38.4816V80.5184C85.7403 81.9528 84.5807 83.1136 83.1463 83.125H35.8543C34.4158 83.1236 33.2503 81.957 33.2503 80.5184V38.4816ZM80.5006 41.1251H38.5006V77.8751L62.8921 53.4783C63.9172 52.4536 65.5788 52.4536 66.6039 53.4783L80.5006 67.4013V41.1251ZM43.75 51.6249C43.75 54.5244 46.1005 56.8749 49 56.8749C51.8995 56.8749 54.25 54.5244 54.25 51.6249C54.25 48.7254 51.8995 46.3749 49 46.3749C46.1005 46.3749 43.75 48.7254 43.75 51.6249Z" fill="#687787"></path>
</svg> </svg>
} }