DEVELOPMENT ENVIRONMENT

~liljamo/tixe

ref: 7741a367a1eb323f43d7945f83a34cbc5e5a2198 tixe/input.css -rw-r--r-- 380 bytes
7741a367Jonni Liljamo docs: update README 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer components {
	.tixe-input {
		@apply p-1 border-2 rounded-md placeholder-slate-400 focus:outline-none;
	}
}

.scribble {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
}

@keyframes scribble {
  0% {
    stroke-dashoffset: 24;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 24;
  }
}