mirror of
https://github.com/afoim/fuwari.git
synced 2026-01-31 09:03:18 +08:00
Merge branch 'main' of https://github.com/afoim/fuwari
This commit is contained in:
@@ -118,8 +118,8 @@ export const imageFallbackConfig: ImageFallbackConfig = {
|
||||
|
||||
export const umamiConfig: UmamiConfig = {
|
||||
enable: true,
|
||||
baseUrl: "https://umami.2x.nz",
|
||||
shareId: "ZyDjOrmjaBTlmGtd",
|
||||
baseUrl: "https://us.umami.is",
|
||||
shareId: "hN3l7PGcxsUCBHfU",
|
||||
timezone: "Asia/Shanghai",
|
||||
};
|
||||
|
||||
|
||||
@@ -497,8 +497,34 @@ import { Icon } from "astro-icon/components";
|
||||
</MainGridLayout>
|
||||
|
||||
<style>
|
||||
.friend-card {
|
||||
@apply flex flex-col gap-1 p-4 rounded-lg bg-[var(--card-bg)] hover:bg-black/5 dark:hover:bg-white/5 transition;
|
||||
}
|
||||
.friend-card {
|
||||
@apply flex flex-col gap-1 p-4 rounded-lg bg-[var(--card-bg)] hover:bg-black/5 dark:hover:bg-white/5;
|
||||
transition-property: all;
|
||||
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
||||
transition-duration: 0.15s;
|
||||
}
|
||||
|
||||
.friend-card:active {
|
||||
scale: .98;
|
||||
background-color: var(--btn-regular-bg-active);
|
||||
}
|
||||
|
||||
.friend-card:hover {
|
||||
background-color: var(--btn-regular-bg-hover);
|
||||
}
|
||||
|
||||
.friend-card:hover .font-bold {
|
||||
color: var(--btn-content);
|
||||
}
|
||||
|
||||
.friend-card:hover .text-sm {
|
||||
@apply text-gray-700 dark:text-white;
|
||||
}
|
||||
|
||||
.friend-card .font-bold,
|
||||
.friend-card .text-sm {
|
||||
transition-property: color;
|
||||
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
||||
transition-duration: 0.15s;
|
||||
}
|
||||
</style>
|
||||
<!-- 触发Vercel Pr -->
|
||||
|
||||
Reference in New Issue
Block a user