This commit is contained in:
Fred Boniface 2024-07-03 11:02:22 +01:00
parent 30240edf00
commit f82d015e52
2 changed files with 4 additions and 5 deletions

View File

@ -64,7 +64,7 @@
top: 5px;
right: 0;
display: flex;
gap: 0px
gap: 0px;
}
.content {

View File

@ -15,8 +15,8 @@
<Card config={upstreamConfig}>
<form action={config.formAction}>
<input type="text" name={config.fieldName} placeholder={config.placeholder} maxlength={config.maxLen} autocomplete="off">
<br>
<input type="text" name={config.fieldName} placeholder={config.placeholder} maxlength={config.maxLen} autocomplete="off" />
<br />
<button type="submit">Submit</button>
</form>
</Card>
@ -50,11 +50,10 @@
input:hover {
box-shadow: var(--box-shadow-dark);
}
button:hover {
background-color: rgb(45, 45, 45);
box-shadow: var(--box-shadow-dark);
}
</style>
</style>