stream-settings: Allow tabs to be wider.

This commit changes the width of tabs in stream and
group settings to be set as per the text inside it
with the previous width being set as minimum width
to avoid tabs being too small.

Fixes #30672.
This commit is contained in:
Sahil Batra 2024-07-05 20:16:17 +05:30 committed by Tim Abbott
parent c4d84d1e5c
commit bdcab71a4d
1 changed files with 4 additions and 2 deletions

View File

@ -810,7 +810,8 @@ h4.user_group_setting_subsection_title {
.tab-container {
.ind-tab {
padding: 3px 4px;
width: 80px;
min-width: 80px;
width: auto;
}
}
@ -1256,7 +1257,8 @@ div.settings-radio-input-parent {
.tab-container {
.ind-tab {
width: 85px;
min-width: 85px;
width: auto;
}
}
}