hyeonseonam_auto-classifier/styles.css

18 lines
352 B
CSS
Raw Normal View History

2023-03-16 14:09:38 +00:00
.setting-item-child {
background-color: var(--background-secondary);
2023-03-16 14:11:56 +00:00
padding-left: 1em;
padding-right: 1em;
2023-03-16 14:09:38 +00:00
border-top: 0px;
animation: child-enter 0.3s ease;
}
@keyframes child-enter {
0% {
opacity: 0;
transform: translateY(-10px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}