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/modal.vue b/components/modal.vue index eec4526..fab00a0 100644 --- a/components/modal.vue +++ b/components/modal.vue @@ -178,6 +178,14 @@ const modalStatus = { 'success': ["mdi:check-circle-outline", 'Данные отправлены'], 'error': ["mdi:close-circle-outline", 'Ошибка отправки'], } + +const policy = () => { + navigateTo('/policy', { + open: { + target: "_blank", + }, + }); +}