- creating the right sidebar

- designing the artboard
- optimizing dark mode performance
- optimizing input onChange handler
This commit is contained in:
Amruth Pillai
2020-07-05 11:34:32 +05:30
parent 6f66181c17
commit 202c7f5ad4
28 changed files with 285 additions and 108 deletions
+11 -3
View File
@@ -7,13 +7,21 @@
}
.container > label > span {
@apply mb-1 text-gray-600 font-medium text-sm uppercase;
@apply mb-1 text-secondary-dark font-medium text-xs uppercase;
}
.container > label > input {
@apply py-4 px-4 rounded bg-gray-200 border border-gray-200;
@apply py-3 px-4 rounded bg-secondary text-primary border border-secondary;
}
.container > label > input::placeholder {
@apply text-primary opacity-50;
}
.container > label > input:focus {
@apply outline-none border-gray-400;
@apply outline-none border-secondary-dark;
}
.container > label > p {
@apply mt-1 text-red-600 text-xs;
}