fixed wrapping button label for followed threads (#27330)

Automatic Merge
This commit is contained in:
Matthew Birtch 2024-06-14 10:11:30 -04:00 committed by GitHub
parent 0d5e30dddb
commit 1fd346f28e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,12 +23,23 @@
+ .tab-button-wrapper {
margin-left: 4px;
}
Button {
display: flex;
max-width: 100%;
.Button_label {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
}
.left {
display: flex;
display: grid;
height: 100%;
align-items: center;
grid-template-columns: minmax(0, auto) minmax(0, auto);
}
.right-anchor {