[Minor] Allow styling of buttons

This commit is contained in:
Robert von Burg 2022-04-26 09:27:44 +02:00
parent 4132a436bb
commit 6d6e6e1df8
2 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
{
"name": "strolch-wc-information-dialog",
"description": "Strolch WebComponent Information Dialog",
"version": "0.1.10",
"version": "0.1.11",
"authors": [
"Robert von Burg"
],

View File

@ -13,7 +13,11 @@
<!-- Style -->
<style is="custom-style">
:host {
--button-text-color: var(--app-primary-color);
}
paper-button {
color: var(--button-text-color);
}
</style>