简体   繁体   中英

Rotate label - Material UI button

I've got a button like this (material-ui):

 //theme.js export const XButtonTop = withStyles({ root: { borderColor: medium_col, borderRadius: 1, borderTopLeftRadius: 16, borderTopRightRadius: 16, height: 28 }, label: { textTransform: "uppercase", fontSize: "10px" } })(Button);

 //App.js import { XButtonTop } from "../theme"; const Selector = state => { return ( <div> <XButtonTop fullWidth size="small" disableElevation> ) </XButtonTop> </div> ) }

I need to rotate the label (90 degrees).

Can someone help me please? Thanks

label: {
    textTransform: 'capitalize',
    transform: 'rotate(-90deg)',
  }

Then you may want to change the height of the button too. Something like this for the root:

height: 120,
width: 30

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