post tooltips: fix long tags causing tag list to overflow.

The default min-width for flex items is auto instead of 0.
This commit is contained in:
NamelessContributor
2022-09-03 11:40:49 +02:00
parent f20e1d5bc9
commit 743989262d

View File

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