mirror of
https://github.com/remsky/Kokoro-FastAPI.git
synced 2025-08-05 16:48:53 +00:00
30 lines
No EOL
432 B
CSS
30 lines
No EOL
432 B
CSS
.badges-container {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
padding: 0.5rem 1rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
z-index: 2;
|
|
}
|
|
|
|
.badge {
|
|
height: 28px;
|
|
display: flex;
|
|
align-items: center;
|
|
transition: opacity 0.2s ease;
|
|
}
|
|
|
|
.badge iframe {
|
|
height: 28px !important;
|
|
}
|
|
|
|
.badge:hover {
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.badge img {
|
|
height: 100%;
|
|
border-radius: 4px;
|
|
} |