input
Input with bottom border only
Input with bottom border only
Загрузка превью…
src/input/c-input-27.vue
<script setup lang="ts">
import { Field, FieldLabel } from "@/components/ui/field"
import { Input } from "@/components/ui/input"
</script>
<template>
<Field class="w-full max-w-xs">
<FieldLabel for="bottom-border">Bottom Border Only</FieldLabel>
<Input
id="bottom-border"
class="focus-visible:border-primary rounded-none border-x-0 border-t-0 border-b-2 px-0 shadow-none focus-visible:ring-0"
placeholder="Type here..."
/>
</Field>
</template>