2023-06-22 16:45:31 +00:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
background: transparent;
|
|
|
|
}
|
2023-06-23 18:04:39 +00:00
|
|
|
|
|
|
|
.drag {
|
2023-06-25 00:58:33 +00:00
|
|
|
-webkit-app-region: drag;
|
2023-06-23 18:04:39 +00:00
|
|
|
}
|
2023-06-27 16:35:51 +00:00
|
|
|
|
2023-07-17 17:17:52 +00:00
|
|
|
.no-drag {
|
|
|
|
-webkit-app-region: no-drag;
|
|
|
|
}
|
|
|
|
|
2023-06-27 16:35:51 +00:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|