Material-UI Typography doesn't center in AppBar











up vote
0
down vote

favorite












I'm trying center the text in an AppBar. I've tried centering the text in Typography element, using align="center", textAlign="center", and style={{ align: "center" }}, among others:



class App extends React.Component {
render() {
return (
<div>
<AppBar>
<Toolbar>
<Typography
variant="h6"
color="inherit"
style={{ align: "center" }}
>
Header
</Typography>
</Toolbar>
</AppBar>
</div>
);
}
}

ReactDOM.render(<App />, document.getElementById("app"));


... but is doesn't work unless I remove the Toolbar. But then I would have to manually change the height of the AppBar, which I've also not found a way to do. In addition, every instance I've seen of the AppBar uses the Toolbar. All the solutions that I've found that could address this are outdated and don't work (there's no such thing as a ToolbarGroup anymore).



I've also tried using a const styles and exporting the AppBar withStyles():



const styles = {
root: {
flexGrow: 1
},
typography: {
align: "center"
}
};

function Header(props) {
const { classes } = props;

return (
<div className={classes.root}>
<AppBar>
<Toolbar>
<Typography
variant="h6"
color="inherit"
className={classes.typography}
>
Header
</Typography>
</Toolbar>
</AppBar>
</div>
);
}

Header.propTypes = {
classes: PropTypes.object.isRequired
};

export default withStyles(styles)(Header);


but it also doesn't work. I'm thinking this should be simple, I'm not sure what I'm missing.










share|improve this question


























    up vote
    0
    down vote

    favorite












    I'm trying center the text in an AppBar. I've tried centering the text in Typography element, using align="center", textAlign="center", and style={{ align: "center" }}, among others:



    class App extends React.Component {
    render() {
    return (
    <div>
    <AppBar>
    <Toolbar>
    <Typography
    variant="h6"
    color="inherit"
    style={{ align: "center" }}
    >
    Header
    </Typography>
    </Toolbar>
    </AppBar>
    </div>
    );
    }
    }

    ReactDOM.render(<App />, document.getElementById("app"));


    ... but is doesn't work unless I remove the Toolbar. But then I would have to manually change the height of the AppBar, which I've also not found a way to do. In addition, every instance I've seen of the AppBar uses the Toolbar. All the solutions that I've found that could address this are outdated and don't work (there's no such thing as a ToolbarGroup anymore).



    I've also tried using a const styles and exporting the AppBar withStyles():



    const styles = {
    root: {
    flexGrow: 1
    },
    typography: {
    align: "center"
    }
    };

    function Header(props) {
    const { classes } = props;

    return (
    <div className={classes.root}>
    <AppBar>
    <Toolbar>
    <Typography
    variant="h6"
    color="inherit"
    className={classes.typography}
    >
    Header
    </Typography>
    </Toolbar>
    </AppBar>
    </div>
    );
    }

    Header.propTypes = {
    classes: PropTypes.object.isRequired
    };

    export default withStyles(styles)(Header);


    but it also doesn't work. I'm thinking this should be simple, I'm not sure what I'm missing.










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm trying center the text in an AppBar. I've tried centering the text in Typography element, using align="center", textAlign="center", and style={{ align: "center" }}, among others:



      class App extends React.Component {
      render() {
      return (
      <div>
      <AppBar>
      <Toolbar>
      <Typography
      variant="h6"
      color="inherit"
      style={{ align: "center" }}
      >
      Header
      </Typography>
      </Toolbar>
      </AppBar>
      </div>
      );
      }
      }

      ReactDOM.render(<App />, document.getElementById("app"));


      ... but is doesn't work unless I remove the Toolbar. But then I would have to manually change the height of the AppBar, which I've also not found a way to do. In addition, every instance I've seen of the AppBar uses the Toolbar. All the solutions that I've found that could address this are outdated and don't work (there's no such thing as a ToolbarGroup anymore).



      I've also tried using a const styles and exporting the AppBar withStyles():



      const styles = {
      root: {
      flexGrow: 1
      },
      typography: {
      align: "center"
      }
      };

      function Header(props) {
      const { classes } = props;

      return (
      <div className={classes.root}>
      <AppBar>
      <Toolbar>
      <Typography
      variant="h6"
      color="inherit"
      className={classes.typography}
      >
      Header
      </Typography>
      </Toolbar>
      </AppBar>
      </div>
      );
      }

      Header.propTypes = {
      classes: PropTypes.object.isRequired
      };

      export default withStyles(styles)(Header);


      but it also doesn't work. I'm thinking this should be simple, I'm not sure what I'm missing.










      share|improve this question













      I'm trying center the text in an AppBar. I've tried centering the text in Typography element, using align="center", textAlign="center", and style={{ align: "center" }}, among others:



      class App extends React.Component {
      render() {
      return (
      <div>
      <AppBar>
      <Toolbar>
      <Typography
      variant="h6"
      color="inherit"
      style={{ align: "center" }}
      >
      Header
      </Typography>
      </Toolbar>
      </AppBar>
      </div>
      );
      }
      }

      ReactDOM.render(<App />, document.getElementById("app"));


      ... but is doesn't work unless I remove the Toolbar. But then I would have to manually change the height of the AppBar, which I've also not found a way to do. In addition, every instance I've seen of the AppBar uses the Toolbar. All the solutions that I've found that could address this are outdated and don't work (there's no such thing as a ToolbarGroup anymore).



      I've also tried using a const styles and exporting the AppBar withStyles():



      const styles = {
      root: {
      flexGrow: 1
      },
      typography: {
      align: "center"
      }
      };

      function Header(props) {
      const { classes } = props;

      return (
      <div className={classes.root}>
      <AppBar>
      <Toolbar>
      <Typography
      variant="h6"
      color="inherit"
      className={classes.typography}
      >
      Header
      </Typography>
      </Toolbar>
      </AppBar>
      </div>
      );
      }

      Header.propTypes = {
      classes: PropTypes.object.isRequired
      };

      export default withStyles(styles)(Header);


      but it also doesn't work. I'm thinking this should be simple, I'm not sure what I'm missing.







      css reactjs material-ui






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked yesterday









      maranathaman

      2218




      2218
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted










          The AppBar component is styled to render its children as flex items.



          CSS property like text-align is specific for horizontal alignment of children displayed differently e.g. as a table cell, block or inline-block.



          Flex items can be centered horizontally using the justify-content, align-self CSS Properties or some more.



          const styles = {
          root: {
          flexGrow: 1,
          },
          appbar: {
          alignItems: 'center',
          }
          };

          function Header(props) {
          const { classes } = props;

          return (
          <div className={classes.root}>
          <AppBar
          className={classes.appbar}
          color="default"
          position="static"
          >
          <!--...-->
          </AppBar>
          </div>
          );
          }





          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














             

            draft saved


            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401619%2fmaterial-ui-typography-doesnt-center-in-appbar%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            1
            down vote



            accepted










            The AppBar component is styled to render its children as flex items.



            CSS property like text-align is specific for horizontal alignment of children displayed differently e.g. as a table cell, block or inline-block.



            Flex items can be centered horizontally using the justify-content, align-self CSS Properties or some more.



            const styles = {
            root: {
            flexGrow: 1,
            },
            appbar: {
            alignItems: 'center',
            }
            };

            function Header(props) {
            const { classes } = props;

            return (
            <div className={classes.root}>
            <AppBar
            className={classes.appbar}
            color="default"
            position="static"
            >
            <!--...-->
            </AppBar>
            </div>
            );
            }





            share|improve this answer



























              up vote
              1
              down vote



              accepted










              The AppBar component is styled to render its children as flex items.



              CSS property like text-align is specific for horizontal alignment of children displayed differently e.g. as a table cell, block or inline-block.



              Flex items can be centered horizontally using the justify-content, align-self CSS Properties or some more.



              const styles = {
              root: {
              flexGrow: 1,
              },
              appbar: {
              alignItems: 'center',
              }
              };

              function Header(props) {
              const { classes } = props;

              return (
              <div className={classes.root}>
              <AppBar
              className={classes.appbar}
              color="default"
              position="static"
              >
              <!--...-->
              </AppBar>
              </div>
              );
              }





              share|improve this answer

























                up vote
                1
                down vote



                accepted







                up vote
                1
                down vote



                accepted






                The AppBar component is styled to render its children as flex items.



                CSS property like text-align is specific for horizontal alignment of children displayed differently e.g. as a table cell, block or inline-block.



                Flex items can be centered horizontally using the justify-content, align-self CSS Properties or some more.



                const styles = {
                root: {
                flexGrow: 1,
                },
                appbar: {
                alignItems: 'center',
                }
                };

                function Header(props) {
                const { classes } = props;

                return (
                <div className={classes.root}>
                <AppBar
                className={classes.appbar}
                color="default"
                position="static"
                >
                <!--...-->
                </AppBar>
                </div>
                );
                }





                share|improve this answer














                The AppBar component is styled to render its children as flex items.



                CSS property like text-align is specific for horizontal alignment of children displayed differently e.g. as a table cell, block or inline-block.



                Flex items can be centered horizontally using the justify-content, align-self CSS Properties or some more.



                const styles = {
                root: {
                flexGrow: 1,
                },
                appbar: {
                alignItems: 'center',
                }
                };

                function Header(props) {
                const { classes } = props;

                return (
                <div className={classes.root}>
                <AppBar
                className={classes.appbar}
                color="default"
                position="static"
                >
                <!--...-->
                </AppBar>
                </div>
                );
                }






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited yesterday

























                answered yesterday









                Oluwafemi Sule

                10.1k1330




                10.1k1330






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401619%2fmaterial-ui-typography-doesnt-center-in-appbar%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Berounka

                    Sphinx de Gizeh

                    Different font size/position of beamer's navigation symbols template's content depending on regular/plain...