Add button visual fixes

This commit is contained in:
Leon Grünewald 2024-09-07 16:10:45 +02:00
parent 9715f0fab5
commit d2531c0dd9
2 changed files with 3 additions and 15 deletions

View file

@ -7,21 +7,9 @@ body {
padding: 0; padding: 0;
} }
button,
input[type="text"] { input[type="text"] {
border: none; border: 1px solid #00000055;
border-radius: 3px;
text-align: center;
text-decoration: none;
background: white;
line-height: 2rem;
padding: 0 1rem;
vertical-align: middle;
width: auto;
color: #000000;
}
button {
border: none;
border-radius: 3px; border-radius: 3px;
text-align: center; text-align: center;
text-decoration: none; text-decoration: none;

View file

@ -7,7 +7,7 @@
class="close" class="close"
onclick={() => { onclick={() => {
if (close) close(); if (close) close();
}}>x</button }}>X</button
> >
{@render children()} {@render children()}
</div> </div>