mirror of https://github.com/zulip/zulip.git
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:
parent
c4d84d1e5c
commit
bdcab71a4d
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue