1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-28 16:06:40 +01:00

fix: fixes cursor color on shell (#3738)

This commit is contained in:
Amir Raminfar
2025-03-31 13:36:04 -07:00
committed by GitHub
parent 076f5d0fc9
commit 9ae7c4cbd8

View File

@@ -75,5 +75,21 @@ onUnmounted(() => {
& :deep(.xterm-rows) {
@apply text-base-content;
}
& :deep(.xterm-cursor-block.xterm-cursor-blink) {
animation-name: blink !important;
}
}
@keyframes blink {
0% {
background-color: var(--color-base-content);
color: #000000;
}
50% {
background-color: inherit;
color: var(--color-base-content);
}
}
</style>