diff --git a/assets/main.scss b/assets/main.scss index f8886a2..9e2a361 100644 --- a/assets/main.scss +++ b/assets/main.scss @@ -174,6 +174,9 @@ label { input { @apply bg-neutral-200 border border-gray-300 text-gray-900 rounded focus:ring-blue-500 focus:border-blue-500 text-lg p-2.5 disabled:cursor-not-allowed; } +input[type=checkbox] { + @apply w-4 h-4; +} textarea { @apply block p-2.5 w-full text-sm text-gray-900 bg-gray-50 rounded-lg border border-gray-300 focus:ring-blue-500 focus:border-blue-500 max-w-full min-h-10 max-h-40; diff --git a/components/header.vue b/components/header.vue index 4bf8c74..31d4f48 100644 --- a/components/header.vue +++ b/components/header.vue @@ -1,7 +1,8 @@