Files
hNetplan/style.css
2026-02-18 11:38:06 +03:00

35 lines
639 B
CSS

[v-cloak] {
display: none;
}
.animate-fade-in-down {
animation: fadeInDown 0.3s ease-out;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Custom scrollbar for code block */
.scrollbar-thin::-webkit-scrollbar {
width: 8px;
height: 8px;
}
.scrollbar-thin::-webkit-scrollbar-track {
background: transparent;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
background-color: #4b5563;
border-radius: 4px;
}
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
background-color: #6b7280;
}