- implementing hobby, language and reference sections

- dynamic template selection
This commit is contained in:
Amruth Pillai
2020-07-09 10:41:16 +05:30
parent 9045e2983d
commit 9e98da038c
38 changed files with 470 additions and 187 deletions
+7 -4
View File
@@ -3,17 +3,20 @@
}
.container label input,
.container label textarea {
@apply py-3 px-4 rounded bg-secondary text-primary border border-secondary;
.container label textarea,
.container label select {
@apply py-3 px-4 rounded bg-secondary text-primary border border-secondary appearance-none;
}
.container label input::placeholder,
.container label textarea::placeholder {
.container label textarea::placeholder,
.container label select::placeholder {
@apply text-primary opacity-50;
}
.container label input:focus,
.container label textarea:focus {
.container label textarea:focus,
.container label select:focus {
@apply outline-none border-gray-500;
}