I'm currently working on developing a drop down list using polymer. I am facing an issue with the CSS styling.
Below is an example for reference:
<div style="width:200px" class="button initial gray">
<div style="padding-left:12px;padding-right:12px;">
<div class="button-value truncated" style="width:inherit;">
Select value very long label with dots at the end
</div>
<div class="arrow">▼</div>
</div>
</div>
I am trying to achieve a drop down list as shown in the example above, but I am facing difficulty with getting the arrow to appear correctly on the right side of the button.
My question is, how can I accomplish this?
View gif example here
Any help or guidance on this matter would be greatly appreciated! Thank you in advance!