fixed wrapping button label for followed threads (#27330)

Automatic Merge
Этот коммит содержится в:
Matthew Birtch
2024-06-14 10:11:30 -04:00
коммит произвёл GitHub
родитель 0d5e30dddb
Коммит 1fd346f28e

Просмотреть файл

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