svelte-materialify
svelte-materialify copied to clipboard
How to get title centered in AppBar?
bad solution:
<style>
:global(.s-app-bar__title) {
flex-grow: 6;
text-align: right; /*or center*/
}
</style>
better but hacky:
<style>
:global(.s-app-bar__title) {
flex-grow: 1;
text-align: center;
}
:global(.s-app-bar__wrapper) > div {
flex-grow: 0 !important;
}
</style>
I would say in the rewrite of the lib there will be a better way, for now this is sufficient.