UX: tag container should wrap if there's a large number of tags
This commit is contained in:
parent
f181e9cc08
commit
a2d1babac6
|
@ -134,7 +134,14 @@
|
|||
.link-bottom-line {
|
||||
font-size: $font-down-1;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
.discourse-tags {
|
||||
flex-wrap: wrap;
|
||||
// IE11 is being very stubborn but this is only protection for topics with
|
||||
// a very excessive number of extra long tags - edge case.
|
||||
-ms-flex: 1 0 0px;
|
||||
}
|
||||
a.badge-wrapper.box,
|
||||
a.discourse-tag.box {
|
||||
padding-top: 0;
|
||||
|
|
Loading…
Reference in New Issue