Verbrauchsausweis Basisfunktionalität

This commit is contained in:
Moritz Utcke
2023-04-04 11:23:36 +04:00
parent 3a1464dc44
commit f164d4c1e2
28 changed files with 1728 additions and 1310 deletions

View File

@@ -101,7 +101,7 @@ const schema = JSON.stringify({
min-height: 100vh;
}
button, .button {
button, .button, button[type="button"] {
@apply px-8 py-2 bg-secondary rounded-lg text-white font-medium hover:shadow-lg transition-all hover:underline active:bg-blue-900 text-center;
color: #fff !important;
}
@@ -110,11 +110,15 @@ const schema = JSON.stringify({
@apply text-xl font-medium mt-6 mb-4;
}
input {
@apply py-2 px-4 w-full outline-none text-lg text-slate-800 border;
input, select, textarea {
@apply py-1.5 px-2.5 rounded-lg w-full outline-none text-base text-slate-800 border;
}
input:disabled, input:read-only, select:disabled {
@apply bg-gray-200 border-gray-300;
}
input:disabled {
@apply bg-gray-100 border-gray-300;
text-indent: -9999px;
}
</style>