34 lines
518 B
CSS
34 lines
518 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html,
|
|
body {
|
|
background: transparent;
|
|
}
|
|
|
|
.drag {
|
|
-webkit-app-region: drag;
|
|
}
|
|
|
|
.no-drag {
|
|
-webkit-app-region: no-drag;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|