mirror of
https://github.com/mue/mue.git
synced 2026-07-07 14:17:09 +02:00
fix: remove fade-in animation on greeting in preview
This commit is contained in:
@@ -4,7 +4,10 @@
|
||||
cursor: initial;
|
||||
user-select: none;
|
||||
font-weight: 600;
|
||||
animation: fadeIn 1s;
|
||||
|
||||
&:not(.preview) {
|
||||
animation: fadeIn 1s;
|
||||
}
|
||||
|
||||
--shadow-shift: 0.2rem;
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { memo } from 'react';
|
||||
|
||||
function GreetingSkeleton() {
|
||||
return <span className="greeting">Good Morning</span>;
|
||||
return <span className="greeting preview">Good Morning</span>;
|
||||
}
|
||||
|
||||
export default memo(GreetingSkeleton);
|
||||
|
||||
Reference in New Issue
Block a user