feat(app): new update button (#30460)

Co-authored-by: Brendan Allan <git@brendonovich.dev>
This commit is contained in:
Aarav Sareen 2026-06-03 12:10:12 +05:30 committed by GitHub
commit a444410cd4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 52 additions and 14 deletions

View file

@ -11,7 +11,7 @@
@font-face {
font-family: "Inter";
src: url("/assets/Inter.ttf") format("truetype");
font-weight: normal;
font-weight: 100 900;
font-style: normal;
}
@ -137,6 +137,31 @@
}
}
[data-slot="titlebar-update-loader"] {
display: block;
flex-shrink: 0;
margin: 1px;
width: 12px;
height: 12px;
border-radius: 9999px;
border: 2px solid color-mix(in srgb, var(--v2-icon-icon-accent) 30%, transparent);
border-top-color: var(--v2-icon-icon-accent);
animation: titlebar-update-loader-spin 0.67s linear infinite;
transform-origin: 50% 50%;
}
@media (prefers-reduced-motion: reduce) {
[data-slot="titlebar-update-loader"] {
animation: none;
}
}
@keyframes titlebar-update-loader-spin {
to {
transform: rotate(360deg);
}
}
@keyframes fade-in {
from {
opacity: 0;