add initial styles for start form

This commit is contained in:
Alex Turchyn
2023-06-13 23:01:52 +03:00
parent 28429c1167
commit b6bb10b45c
8 changed files with 130 additions and 19 deletions
+27
View File
@@ -30,3 +30,30 @@ button .enabled {
button[disabled] .enabled {
display: none;
}
button .disabled {
display: none;
}
button[disabled] .disabled {
display: initial;
}
button .enabled {
display: initial;
}
button[disabled] .enabled {
display: none;
}
.btn {
@apply no-animation;
}
.base-input {
@apply input input-bordered bg-white;
}
.base-button {
@apply btn btn-neutral text-white text-base;
}