diff --git a/crabfit-frontend/src/components/Recents/Recents.tsx b/crabfit-frontend/src/components/Recents/Recents.tsx
index 779a725..035ac99 100644
--- a/crabfit-frontend/src/components/Recents/Recents.tsx
+++ b/crabfit-frontend/src/components/Recents/Recents.tsx
@@ -8,7 +8,7 @@ import { Recent } from './recentsStyle';
dayjs.extend(relativeTime);
-const Recents = () => {
+const Recents = ({ target }) => {
const recents = useRecentsStore(state => state.recents);
const locale = useLocaleUpdateStore(state => state.locale);
const { t } = useTranslation(['home', 'common']);
@@ -18,7 +18,7 @@ const Recents = () => {
{t('home:recently_visited')}
{recents.map(event => (
-
+
{event.name}
{t('common:created', { date: dayjs.unix(event.created).fromNow() })}
diff --git a/crabfit-frontend/src/pages/Create/Create.tsx b/crabfit-frontend/src/pages/Create/Create.tsx
index fc8083e..e766316 100644
--- a/crabfit-frontend/src/pages/Create/Create.tsx
+++ b/crabfit-frontend/src/pages/Create/Create.tsx
@@ -170,7 +170,7 @@ const Create = ({ offline }) => {
) : (
<>
-
+
{offline ? (
diff --git a/crabfit-frontend/src/pages/Home/homeStyle.ts b/crabfit-frontend/src/pages/Home/homeStyle.ts
index a214baa..2dd67a2 100644
--- a/crabfit-frontend/src/pages/Home/homeStyle.ts
+++ b/crabfit-frontend/src/pages/Home/homeStyle.ts
@@ -47,8 +47,9 @@ export const TitleLarge = styled.h1`
export const Logo = styled.img`
width: 80px;
- transition: transform .2s;
- animation: jelly .5s 1 .1s;
+ transition: transform .15s;
+ animation: jelly .5s 1 .05s;
+ user-select: none;
@keyframes jelly {
from,to {