File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ export default function ServerSettingsModal({
204204 </ div >
205205 </ div >
206206 </ Tabs . Content >
207- < Tabs . Content value = "Roles" className = { `${ tabContentClass } ` } >
207+ < Tabs . Content value = "Roles" className = { `${ tabContentClass } ` } >
208208 < span className = "w-full flex flex-row" >
209209 < h1 className = "text-2xl p-2 flex-grow" > Roles</ h1 >
210210 < button
@@ -232,15 +232,18 @@ export default function ServerSettingsModal({
232232 </ button >
233233 </ span >
234234
235- < Tabs . Root className = { tabRootClass } orientation = "vertical" >
236- < Tabs . List className = { tabListClass } >
235+ < Tabs . Root
236+ className = { `${ tabRootClass } overflow-x-clip` }
237+ orientation = "vertical"
238+ >
239+ < Tabs . List className = { `${ tabListClass } h-14 overflow-y-auto ` } >
237240 { roles
238241 . sort ( ( first , second ) => first . position - second . position )
239242 . map ( ( role ) => (
240243 < Tabs . Trigger
241244 key = { role . id }
242245 value = { role . id . toString ( ) }
243- className = { tabTriggerClass }
246+ className = { ` ${ tabListClass } p-2 ` }
244247 style = { {
245248 color : `#${ role . color } ` ,
246249 } }
You can’t perform that action at this time.
0 commit comments