Skip to content

Commit 5aae28b

Browse files
author
Nevo David
committed
Merge remote-tracking branch 'origin/main'
2 parents 599b9ac + b4976d5 commit 5aae28b

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

apps/frontend/src/components/launches/filters.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export const Filters = () => {
146146
]);
147147
return (
148148
<div className="text-textColor flex gap-[8px] items-center select-none">
149-
<div onClick={previous}>
149+
<div onClick={previous} className="cursor-pointer">
150150
<svg
151151
xmlns="http://www.w3.org/2000/svg"
152152
width="20"
@@ -171,7 +171,7 @@ export const Filters = () => {
171171
? `Week ${week.currentWeek}`
172172
: `${dayjs().month(week.currentMonth).format('MMMM')}`}
173173
</div>
174-
<div onClick={next}>
174+
<div onClick={next} className="cursor-pointer">
175175
<svg
176176
xmlns="http://www.w3.org/2000/svg"
177177
width="20"

apps/frontend/src/components/layout/layout.settings.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ dayjs.extend(isBetween);
4444

4545
export const LayoutSettings = ({ children }: { children: ReactNode }) => {
4646
const fetch = useFetch();
47-
const {isGeneral} = useVariables();
48-
const {backendUrl, billingEnabled} = useVariables();
47+
const { isGeneral } = useVariables();
48+
const { backendUrl, billingEnabled } = useVariables();
4949
const load = useCallback(async (path: string) => {
5050
return await (await fetch(path)).json();
5151
}, []);
@@ -100,7 +100,7 @@ export const LayoutSettings = ({ children }: { children: ReactNode }) => {
100100
{isGeneral ? (
101101
<svg
102102
width="80"
103-
height="167"
103+
height="75"
104104
viewBox="0 0 366 167"
105105
fill="none"
106106
xmlns="http://www.w3.org/2000/svg"

apps/frontend/src/components/layout/mode.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const ModeComponent = () => {
1515
}, [mode]);
1616

1717
return (
18-
<div onClick={changeMode} className="select-none">
18+
<div onClick={changeMode} className="select-none cursor-pointer">
1919
{mode === 'dark' ? (
2020
<svg
2121
xmlns="http://www.w3.org/2000/svg"

apps/frontend/src/components/media/media.component.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ export const MediaBox: FC<{
9393
}, [data]);
9494

9595
return (
96-
<div className="fixed left-0 top-0 bg-primary/80 z-[300] w-full min-h-full p-[60px] animate-fade">
97-
<div className="w-full h-full bg-sixth border-tableBorder border-2 rounded-xl pb-[20px] px-[20px] relative">
98-
<div className="flex">
96+
<div className="fixed left-0 top-0 bg-primary/80 z-[300] w-full min-h-full p-4 md:p-[60px] animate-fade">
97+
<div className="max-w-[1000px] w-full h-full bg-sixth border-tableBorder border-2 rounded-xl pb-[20px] px-[20px] relative mx-auto">
98+
<div className="flex flex-col">
9999
<div className="flex-1">
100100
<TopTitle title="Media Library" />
101101
</div>

0 commit comments

Comments
 (0)