Fix some cases of overflowing hendelse text breaking styles here and there
This commit is contained in:
parent
59463ebdfb
commit
eb39821f20
|
@ -25,6 +25,8 @@
|
||||||
|
|
||||||
.event-info {
|
.event-info {
|
||||||
grid-column: 1;
|
grid-column: 1;
|
||||||
|
overflow-x: hidden; /*force text wrap*/
|
||||||
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.event-info h3 {
|
.event-info h3 {
|
||||||
|
|
|
@ -90,6 +90,7 @@ p + .subtext {
|
||||||
.events li p {
|
.events li p {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.events .subtext {
|
.events .subtext {
|
||||||
|
|
|
@ -256,6 +256,9 @@ main h1 {
|
||||||
article {
|
article {
|
||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
}
|
}
|
||||||
|
article p {
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
.gridsplit {
|
.gridsplit {
|
||||||
display: grid;
|
display: grid;
|
||||||
|
|
Loading…
Reference in New Issue