first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.spinner {
animation: spin 2s linear infinite;
}
.root {
display: flex;
align-items: center;
border-radius: 12px;
flex-direction: row;
height: 24px;
padding: 0 8px;
cursor: pointer;
background-color: transparent;
border: none;
}
@media (hover: hover) {
.root:hover {
background-color: rgba(51, 51, 51, 1);
}
}
.root:active {
background-color: rgba(51, 51, 51, 0.6);
}
.image {
height: 14px;
width: 16px;
margin-right: 4px;
}
.text {
font-size: 12px;
line-height: 16px;
}