Fix multi-line URLs on cards
This commit is contained in:
parent
f2116b21bb
commit
c3a9eee10a
2 changed files with 6 additions and 1 deletions
|
@ -19,7 +19,7 @@ Web UI version numbers should always match the corresponding version of LBRY App
|
|||
*
|
||||
|
||||
### Fixed
|
||||
*
|
||||
* URLs on cards no longer wrap and show an ellipsis if longer than one line
|
||||
*
|
||||
|
||||
### Deprecated
|
||||
|
|
|
@ -35,6 +35,11 @@
|
|||
margin-top: var(--card-margin);
|
||||
margin-bottom: var(--card-margin);
|
||||
}
|
||||
.card__title-primary .meta {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.card__title-identity {
|
||||
margin-top: $spacing-vertical * 1/3;
|
||||
margin-bottom: $spacing-vertical * 1/3;
|
||||
|
|
Loading…
Add table
Reference in a new issue