25 lines
621 B
CSS
25 lines
621 B
CSS
/* 自定义工具类 - 这些将被Tailwind处理 */
|
|
@layer utilities {
|
|
.content-auto {
|
|
content-visibility: auto;
|
|
}
|
|
|
|
.accordion-transition {
|
|
transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
|
|
overflow: hidden; /* 添加这一行 */
|
|
}
|
|
|
|
.chart-container {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.text-shadow {
|
|
text-shadow: 0 0 10px rgba(22, 93, 255, 0.5);
|
|
}
|
|
|
|
.bg-grid {
|
|
background-image: radial-gradient(rgba(22, 93, 255, 0.1) 1px, transparent 1px);
|
|
background-size: 20px 20px;
|
|
}
|
|
} |