DEVELOPMENT ENVIRONMENT

~liljamo/tixe

ref: fd89e5586bdbdf5e55057348c82306f33718cdb8 tixe/input.css -rw-r--r-- 380 bytes
fd89e558Jonni Liljamo fix: fix cookie issue 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;
  }
}