mirror of
https://github.com/stashapp/Stash-Docs.git
synced 2026-04-13 09:07:06 -05:00
22 lines
299 B
CSS
22 lines
299 B
CSS
@keyframes heart {
|
|
0%, 40%, 80%, 100% {
|
|
transform: scale(1);
|
|
}
|
|
20%, 60% {
|
|
transform: scale(1.15);
|
|
}
|
|
}
|
|
.heart {
|
|
animation: heart 1000ms infinite;
|
|
color: #EE0F0F;
|
|
}
|
|
.md-nav__item svg {
|
|
width: 18px !important;
|
|
height: 18px !important;
|
|
}
|
|
/*
|
|
.md-grid {
|
|
max-width: 81rem;
|
|
}
|
|
*/
|