The content area of paper-dialog-scrollable
has a 24px padding on the left and right. I'd like to change that. When the HTML is rendered, it's an in-line style sheet and an in-line div that has the padding. I've tried using the following to no avail. The polymer inline styles come in after my inline style.
DOES NOT WORK:
<style>
.scrollable {
--paper-dialog-scrollable: {
padding-left: 0px;
padding-right: 0px;
};
}
</style>
In the following image it is the div with id="scrollable" that I need to change. I think it is scope=paper-dialog-scrollable-0 that actually sets the padding.
So how do I adjust padding to internal div on paper-dialog-scrollable?