Please see the attached screenshot beforehand
To try to push the paper-tabs to the right, and have the title take up the
rest of the parent's size, I applied flex-grow: 1 to the title, which
works as expected with the red div (title takes up space - tabs pushed to
right), but has no effect on the core-toolbar unless i set flex-direction
to column, which makes no sense, as flex-grow is for the main axis, not the
cross axis.
See index.html and style.css for source
Follow Polymer on Google+: plus.google.com/107187849809354688692
---
You received this message because you are subscribed to the Google Groups
"Polymer" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/polymer-dev/47d0d2e3-92cf-4cd1-b53c-621acf48ed31%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Title: TEST
FIRST
SECOND
html, body, core-header-panel {
width: 100%;
height: 100%;
}
body {
margin: 0;
font-family: robotodraft, sans-serif;
}
core-toolbar {
display: flex;
}
.title {
flex-grow: 1;
}
.nav {
width: 25rem;
}
.test {
background: red;
width: 100%;
display: flex;
}