app.css 473 Bytes
Newer Older
Jeffrey Morgan's avatar
Jeffrey Morgan committed
1
2
3
4
5
6
7
8
@tailwind base;
@tailwind components;
@tailwind utilities;

html,
body {
  background: transparent;
}
Jeffrey Morgan's avatar
Jeffrey Morgan committed
9
10

.drag {
11
  -webkit-app-region: drag;
Jeffrey Morgan's avatar
Jeffrey Morgan committed
12
}
Jeffrey Morgan's avatar
Jeffrey Morgan committed
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

.blink {
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}

@keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: black;
  }
}