Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@tailwind components;

@layer components {
    .input {
        @apply 
            transition
            bg-transparent 
            p-2 
            pl-14 
            outline-none 
            w-[100%]
            focus:transition
    }
}