Is there a way to adjust the width of a paper-textarea
? I have tried using CSS selectors within Polymer 1.0 style tags, but it does not seem to be effective. The paper-textarea
element is made up of paper-input-container
. I attempted the following approach:
<style>
paper-textarea + paper-input-container {
min-width: 324px;
width: 324px;
margin-right: 24px;
}
paper-textarea > paper-input-container {
min-width: 324px;
width: 324px;
margin-right: 24px;
}
paper-textarea paper-input-container {
min-width: 324px;
width: 324px;
margin-right: 24px;
}
</style>
Unfortunately, none of these CSS selector combinations seemed to work in my custom element.