简体   繁体   中英

Material-UI app bar title styling

is it possible to style the AppBar from Material-UI title, not inline way? I've a css file seperate and I would like to change the size of title for example.

sth like this:

.app-bar title {
    font-size: 120px !important;
}

Thank you :)

I solved the problem. Solution:

 <AppBar className="app-bar"
                            title={<div className="app-bar-title">Tomek The Title</div>}

and then in css file you can add styles.

尝试使用.app-bar h1.app-bar *样式化CSS代码,然后将.app-bar放入AppBar组件className

As you can see in docs, http://www.material-ui.com/#/components/app-bar component accepts className for wrappper and have h1 tag without class, so you can try:

.app-bar h1 {
font-size: 120px !important;

}

and

<AppBar className='app-bar' />

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM