fix pre-code overflow

This commit is contained in:
sørenpeter 2024-12-12 15:37:16 +01:00
parent 555baefcd0
commit 1adfa39cfd

View file

@ -268,12 +268,13 @@ article {
article.post-entry {
display: grid;
grid-gap: 1rem;
grid-template-columns: 2.5rem auto;
/* grid-template-columns: 2.5rem auto;*/
grid-template-columns: 2.5rem minmax(min(50vw, 30ch), 1fr);
}
article .twt-msg {
padding: 0.5rem 0.5rem 0.5rem 0 ;
overflow-wrap: anywhere;
/* overflow-wrap: anywhere; */
}
article .twt-msg p {
@ -324,6 +325,7 @@ article .embed-video {
border-radius: 0.25rem;
}
article small {
font-size: small;
}