Better card preview styling

Test in case all the texts are too long and overflowing
pull/1/head
Lim Chee Aun 2022-12-12 22:43:47 +08:00
rodzic 94fb2b04f7
commit 4d09d24e00
1 zmienionych plików z 7 dodań i 6 usunięć

Wyświetl plik

@ -318,6 +318,7 @@
}
.card .meta-container {
padding: 8px;
min-width: 0;
}
.card .title {
font-weight: normal;
@ -334,18 +335,18 @@
font-size: smaller;
opacity: 0.75;
margin: 0;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
display: -webkit-box;
display: box;
-webkit-box-orient: vertical;
box-orient: vertical;
-webkit-line-clamp: 2;
line-clamp: 2;
display: block;
}
.card .meta.domain {
opacity: 1;
color: var(--link-color);
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
display: block;
}
a.card {
text-decoration: none;