DEVELOPMENT ENVIRONMENT

~liljamo/tixe

ref: acbe0c9841bcbe6cadc3300fef092ce551e76421 tixe/input.css -rw-r--r-- 264 bytes
acbe0c98Jonni Liljamo feat: error.tmpl 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@tailwind base;
@tailwind components;
@tailwind utilities;

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

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