1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

Fix title out of bounds in asset teaser component (#850)

This commit is contained in:
Norbi 2021-09-13 13:40:51 +03:00 committed by GitHub
parent c0d064fe10
commit e19c918ed5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,9 +21,7 @@
.content { .content {
margin-top: calc(var(--spacer) / 2); margin-top: calc(var(--spacer) / 2);
overflow-wrap: break-word; overflow-wrap: break-word;
word-wrap: break-word; hyphens: auto;
word-break: break-all;
/* for sticking footer to bottom */ /* for sticking footer to bottom */
flex: 1; flex: 1;
} }
@ -36,6 +34,7 @@
font-size: var(--font-size-large); font-size: var(--font-size-large);
margin: 0; margin: 0;
padding-bottom: calc(var(--spacer) / 6); padding-bottom: calc(var(--spacer) / 6);
overflow-wrap: break-word;
} }
.publisher { .publisher {