style(boards box): don't let addresses wrap, show ellipsis instead

This commit is contained in:
Tom (plebeius.eth)
2024-08-14 17:03:37 +02:00
parent 2c192b273f
commit bd10a4e2d9
+7 -1
View File
@@ -158,7 +158,7 @@
content: '✔ '; content: '✔ ';
} }
.list a { .list, .subplebbit a {
color: var(--homepage-box-link-text-color); color: var(--homepage-box-link-text-color);
text-decoration: var(--homepage-box-link-text-decoration); text-decoration: var(--homepage-box-link-text-decoration);
} }
@@ -195,6 +195,12 @@
display: table; display: table;
} }
.boardsBoxContent .subplebbit {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.boardsBoxContent .column { .boardsBoxContent .column {
float: left; float: left;
width: 168px; width: 168px;