Merge pull request #5246 from NamelessContributor/fix-long-tag-overflow

Fix some long tags / wiki links overflowing their container
This commit is contained in:
evazion
2022-09-15 03:44:15 -05:00
committed by GitHub
2 changed files with 9 additions and 2 deletions

View File

@@ -40,6 +40,8 @@ footer#page-footer {
@media (min-width: 1920px) { @media (min-width: 1920px) {
min-width: 280px; min-width: 280px;
} }
overflow-wrap: break-word;
} }
#content { #content {

View File

@@ -32,8 +32,13 @@ $tooltip-body-height: $tooltip-line-height * 6; // 4 lines high.
margin-right: 0; margin-right: 0;
} }
.post-tooltip-body-left { flex: 0; } .post-tooltip-body-left {
.post-tooltip-body-right { flex: 1; } flex: 0;
}
.post-tooltip-body-right {
flex: 1;
min-width: 0;
}
} }
div.post-tooltip-header { div.post-tooltip-header {