DEVELOPMENT ENVIRONMENT

~liljamo/tixe

ref: 6124b16e89cc33cf9e3b2df29c709b1f1465ac53 tixe/input.css -rw-r--r-- 264 bytes
6124b16eJonni Liljamo fix: abort if not logged in... 1 year, 1 month 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;
  }
}