Reputation: 3605
I know this is somewhat like a hack, and dialogs are meant to have shadows. However I'm using paper-dialog
in the form of a bottom sheet in my application. I want to remove the elevation/shadow
of the dialog. How can I achieve this?
Upvotes: 1
Views: 359
Reputation: 1334
I just added the following style and the shadow is gone
<style>
paper-dialog { box-shadow: none; }
</style>
Upvotes: 0