Lightningのヘッダータイトル(ロゴ)やメニューを中央寄せする
ロゴテキストを中央寄せ
.site-header-logo {
text-align:center;
}
メニューを中央寄せ
.gMenu_outer {
margin: 0 auto 10px;
float:none;
}
ヘッダーロゴとメニューを中央寄せ
.site-header--layout--nav-float .site-header-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
.site-header--layout--nav-float .site-header-logo img {
margin:0 auto;
}