Skip to content

Commit

Permalink
fix: no border radius on input
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Feb 1, 2024
1 parent 17de8c4 commit b70f318
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<button v-if="domain && !editing" class="bg-transparent" @click="enableEditing">{{ domain }}</button>
<form v-else class="flex flex-col gap-4 overflow-hidden" @submit.prevent="navigateToNewDomain">
<input ref="input" v-model="newDomain" name="domain" type="text"
class="md:-mt-1 py-0 bg-transparent outline-none border-b-2 border-b-solid border-transparent focus:border-green-500 underline-dashed"
class="md:-mt-1 rounded-none py-0 bg-transparent outline-none border-b-2 border-b-solid border-transparent focus:border-green-500 underline-dashed"
autofocus inputmode="url" autocapitalize="none" placeholder="Enter a domain" required />
<button type="submit"
class="bg-green-400 text-black hover: hover:bg-white focus:bg-white active:bg-white text-xl md:text-2xl py-2 px-6 md:self-start">See
Expand Down Expand Up @@ -129,7 +129,7 @@ const favicon = computed(() => {
})
useHead({
title: () => domain.value ? `page-speed.dev - ${domain.value}` : 'page-speed.dev',
title: () => domain.value ? domain.value : 'page-speed.dev',
link: [
() => ({
key: 'favicon',
Expand Down

0 comments on commit b70f318

Please sign in to comment.