Skip to content

Commit

Permalink
fix: style
Browse files Browse the repository at this point in the history
Signed-off-by: Innei <[email protected]>
  • Loading branch information
Innei committed Jul 6, 2023
1 parent 6e7fd3f commit 0360a8e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/app/(home)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const TwoColumnLayout = ({
rightContainerClassName?: string
}) => {
return (
<div className="group relative flex h-full w-full flex-col flex-wrap items-center lg:flex-row">
<div className="relative flex h-full w-full flex-col flex-wrap items-center lg:flex-row">
{children.slice(0, 2).map((child, i) => {
return (
<div
Expand Down Expand Up @@ -123,7 +123,7 @@ const Welcome = () => {
<TwoColumnLayout>
<>
<m.div
className="relative leading-[4] [&_*]:inline-block"
className="group relative leading-[4] [&_*]:inline-block"
initial={{ opacity: 0.0001, y: 50 }}
animate={{ opacity: 1, y: 0 }}
transition={softBouncePrest}
Expand Down
2 changes: 1 addition & 1 deletion src/components/widgets/post/PostMetaBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const PostMetaBar: Component<{
)}
{!!meta.modified && (
<FloatPopover
wrapperClassName="text-xs self-end translate-y-[-1px]"
wrapperClassName="text-xs"
as="span"
TriggerComponent={() => '(已编辑)'}
>
Expand Down
4 changes: 2 additions & 2 deletions src/styles/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,14 @@
}

.animation-blink {
animation: blink 1s ease-in-out infinite alternate;
animation: blink 2s ease infinite both;
}

@keyframes blink {
0% {
opacity: 0;
}
30% {
50% {
opacity: 1;
}
100% {
Expand Down

1 comment on commit 0360a8e

@vercel
Copy link

@vercel vercel bot commented on 0360a8e Jul 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

shiro – ./

springtide.vercel.app
innei.in
shiro-git-main-innei.vercel.app
shiro-innei.vercel.app

Please sign in to comment.