fix: chats ui text sizing

This commit is contained in:
trisua 2025-04-27 23:28:23 -04:00
parent 7774124bd0
commit 838b9c1304

View file

@ -97,7 +97,7 @@
data-turbo="false" data-turbo="false"
> >
{{ icon "rss" }} {{ icon "rss" }}
<b>{{ channel.title }}</b> <b class="name shortest">{{ channel.title }}</b>
</a> </a>
<div class="dropdown"> <div class="dropdown">
@ -138,7 +138,7 @@
data-turbo="false" data-turbo="false"
> >
{{ icon "rss" }} {{ icon "rss" }}
<b>{{ channel.title }}</b> <b class="name shortest">{{ channel.title }}</b>
</a> </a>
{% endif %} {% endfor %} {% endif %} {% endfor %}
</div> </div>
@ -183,6 +183,11 @@
overflow: hidden; overflow: hidden;
} }
.name.shortest {
max-width: 165px;
overflow-wrap: normal;
}
.send_button { .send_button {
width: 48px; width: 48px;
height: 48px; height: 48px;
@ -196,6 +201,7 @@
a.channel_icon { a.channel_icon {
width: 48px; width: 48px;
height: 48px; height: 48px;
min-height: 48px;
} }
a.channel_icon .icon { a.channel_icon .icon {
@ -206,6 +212,7 @@
a.channel_icon.small { a.channel_icon.small {
width: 24px; width: 24px;
height: 24px; height: 24px;
min-height: 24px;
} }
a.channel_icon.small .icon { a.channel_icon.small .icon {