aboutsummaryrefslogtreecommitdiff
path: root/src/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend')
-rw-r--r--src/frontend/tubo/components/layout.cljs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/tubo/components/layout.cljs b/src/frontend/tubo/components/layout.cljs
index 0bcfac0..4fd801d 100644
--- a/src/frontend/tubo/components/layout.cljs
+++ b/src/frontend/tubo/components/layout.cljs
@@ -43,11 +43,11 @@
(defn uploader-avatar
[source name & url]
- (let [image [:img.rounded-full.object-cover.max-w-full.min-h-full {:src source :alt name}]]
+ (let [image [:img.flex-auto.rounded-full.object-cover.max-w-full.min-h-full {:src source :alt name}]]
(when source
[:div.relative.w-16.h-16.flex-auto.flex.items-center
(if url
- [:a.flex-auto.flex {:href url :title name} image]
+ [:a.flex-auto.flex.min-h-full.min-w-full.max-h-full.max-w-full {:href url :title name} image]
image)])))
(defn primary-button