diff --git a/public/favicon.ico b/public/favicon.ico index df36fcfb..8c83bff9 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/images/mockProfile.jpg b/public/images/mockProfile.jpg deleted file mode 100644 index bc167fb2..00000000 Binary files a/public/images/mockProfile.jpg and /dev/null differ diff --git a/src/assets/styles.css b/src/assets/styles.css index a982f084..9da13117 100644 --- a/src/assets/styles.css +++ b/src/assets/styles.css @@ -38,29 +38,29 @@ body { @apply flex w-full py-3 font-bold border rounded items-center justify-center min-w-[138px]; } .button-large-default { - @apply button-large bg-white text-zinc-400 border-zinc-400; + @apply button-large bg-white text-disabled border-border-1 hover:bg-background-2; } .button-large-red { - @apply button-large bg-red-1 text-white border-red-1; + @apply button-large bg-red-1 text-white border-red-1 hover:bg-[#D61E1E]; } .button-large-primary { - @apply button-large bg-primary1 text-white border-primary1; + @apply button-large bg-primary1 text-white border-primary1 hover:bg-[#6D6EF0]; } .button-medium { @apply flex items-center justify-center rounded px-4 py-2 font-bold gap-1 text-xs cursor-pointer shrink-0; } .button-medium-primary { - @apply button-medium bg-primary1 text-white; + @apply button-medium bg-primary1 text-white hover:bg-[#6869DE]; } .button-medium-secondary { - @apply button-medium bg-white border border-primary1 text-primary1; + @apply button-medium bg-white border border-primary1 text-primary1 hover:bg-background-2; } .button-medium-default { - @apply button-medium bg-white border border-border-1 text-disabled; + @apply button-medium bg-white border border-border-1 text-disabled hover:bg-background-2; } .button-medium-red { - @apply button-medium bg-white border border-red-1 text-red-1; + @apply button-medium bg-white border border-red-1 text-red-1 hover:bg-background-2; } .button-small { diff --git a/src/components/request-task/RequestTaskTextArea.vue b/src/components/request-task/RequestTaskTextArea.vue index 22953fbd..4bdab517 100644 --- a/src/components/request-task/RequestTaskTextArea.vue +++ b/src/components/request-task/RequestTaskTextArea.vue @@ -1,8 +1,8 @@