Fix text overflow issues on godfather page

This commit is contained in:
Julien Constant 2023-03-13 11:13:14 +01:00
parent 00ba39a5a0
commit 33d9e024a2

View File

@ -48,6 +48,7 @@
flex-direction: row; flex-direction: row;
justify-content: flex-start; justify-content: flex-start;
align-items: flex-start; align-items: flex-start;
max-height: 65px;
} }
> span { > span {
@ -73,11 +74,19 @@
} }
} }
>em { > em {
box-sizing: border-box;
padding: 0 5px;
text-align: center; text-align: center;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
@media (max-width: 375px) { @media (max-width: 375px) {
margin-top: 10px; margin-top: 10px;
text-align: left;
max-width: none;
width: 100%;
} }
} }
} }