Skip to content

Commit

Permalink
Merge branch 'preview'
Browse files Browse the repository at this point in the history
  • Loading branch information
pdelfan committed Dec 21, 2023
2 parents 575bb3e + f0885be commit 239a9b6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/actions/composeButton/ComposeButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function ComposeButton(props: Props) {
{mode === "float" && (
<button
onClick={toggleComposer}
className={`z-40 p-3.5 rounded-full fixed md:hidden right-3 bottom-20 md:bottom-5 bg-primary text-white hover:bg-primary-dark outline-none ${
className={`z-40 p-3.5 rounded-full fixed md:hidden right-3 bottom-28 bg-primary text-white hover:bg-primary-dark outline-none ${
show ? "translate-y-0 opacity-100" : "translate-y-36 opacity-0"
} transition-all ease-in-out duration-500`}
>
Expand Down
4 changes: 2 additions & 2 deletions src/components/actions/refetch/Refetch.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"use client"
"use client";

import { useScrollContext } from "@/app/providers/scroll";
import Button from "../button/Button";
Expand All @@ -19,7 +19,7 @@ export default function Refetch(props: Props) {
icon="tabler:refresh"
iconSize="text-2xl"
iconColor="text-neutral-500 hover:text-neutral-600"
className={`z-40 p-3 rounded-full fixed bottom-20 md:bottom-5 ml-3 border border-neutral-300 bg-white hover:bg-neutral-50 hover:-rotate-180 ${
className={`z-40 p-3 rounded-full fixed bottom-28 ml-3 border border-neutral-300 bg-white hover:bg-neutral-50 hover:-rotate-180 ${
show ? "translate-y-0 opacity-100" : "translate-y-36 opacity-0"
} transition-all ease-in-out duration-500`}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/navigational/appBar/AppBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function AppBar() {

return (
<nav
className={`flex justify-between py-4 px-6 border-t gap-6 fixed bottom-0 z-40 w-full md:hidden bg-white ${
className={`flex justify-between pb-8 pt-1 px-6 border-t gap-6 fixed bottom-0 z-40 w-full md:hidden bg-white ${
show ? "translate-y-0 opacity-100" : "translate-y-36 opacity-0"
} transition-all ease-in-out duration-500`}
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/navigational/navbar/NavItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function NavItem(props: Props) {
>
<Icon
icon={activeIcon}
className={`text-2xl md:text-3xl ${activeStyle}`}
className={`text-2xl md:text-3xl m-2 sm:m-0 ${activeStyle}`}
/>
<span className={`hidden lg:inline text-lg font-medium ${activeStyle}`}>
{title}
Expand Down
1 change: 0 additions & 1 deletion src/containers/NotificationsContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import EndOfFeed from "@/components/feedback/endOfFeed/EndOfFeed";
import FeedAlert from "@/components/feedback/feedAlert/FeedAlert";
import usePreferences from "@/lib/hooks/bsky/actor/usePreferences";
import useNotification from "@/lib/hooks/bsky/notification/useNotification";
import { getContentFilter } from "@/lib/utils/feed";
import { Icon } from "@iconify/react/dist/iconify.js";
import { Fragment } from "react";

Expand Down

0 comments on commit 239a9b6

Please sign in to comment.