Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make materil UI tabs label left ? by default its center aligned

By default material ui tab label is center aligned, how do i make it left aligned ?

center aligned tab labels image

like image 536
shabeeb ck Avatar asked Nov 08 '25 09:11

shabeeb ck


2 Answers

Inline is so: <Tab sx={{alignItems: 'start',}} label="Application" {...a11yProps(0)} />

like image 161
JurijsReact Avatar answered Nov 09 '25 22:11

JurijsReact


May be this will help

.MuiTab-wrapper {
        align-items: self-start;
        justify-content: flex-start;

}

By default both of them are centered.

like image 37
Bishwas Avatar answered Nov 09 '25 22:11

Bishwas