feat(app): new update button (#30460)
Co-authored-by: Brendan Allan <git@brendonovich.dev>
This commit is contained in:
parent
a3b97d9090
commit
a444410cd4
2 changed files with 52 additions and 14 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue