[Fix] Fixed link visibility and decoration

This commit is contained in:
Robert von Burg 2023-06-27 14:35:18 +02:00
parent 805b6c3b52
commit dad78e8a65
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
2 changed files with 12 additions and 1 deletions

View File

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

View File

@ -12,6 +12,7 @@
<style is="custom-style"> <style is="custom-style">
:host { :host {
pointer-events: all !important; pointer-events: all !important;
--max-dialog-width: 600px;
} }
.title { .title {
@ -21,6 +22,7 @@
.aligned-dialog { .aligned-dialog {
margin: 0; margin: 0;
min-width: 300px; min-width: 300px;
max-width: var(--max-dialog-width);
} }
.dialog-headline { .dialog-headline {
@ -29,6 +31,15 @@
@apply(--layout-horizontal); @apply(--layout-horizontal);
@apply(--layout-center); @apply(--layout-center);
} }
a {
display: block;
text-decoration: none;
width: fit-content;
margin: 0 0 0 24px;
padding: 0;
}
</style> </style>
<!-- Content --> <!-- Content -->