Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/(landing)/_components/StepsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const steps = [
{
icon: NoteIcon,
title: "ํ•™์Šตํ•˜๊ณ  ๊ธฐ๋กํ•˜๊ธฐ",
description: "ํ•  ์ผ์„ ์™„๋ฃŒํ•˜๋ฉฐ ํ•™์Šตํ•˜๊ณ ,\n๋…ธํŠธ๋กœ ๊ธฐ๋กํ•˜์„ธ์š”",
description: "ํ•  ์ผ์„ ์™„๋ฃŒํ•˜๋ฉฐ ํ•™์Šตํ•˜๊ณ \n๋…ธํŠธ๋กœ ๊ธฐ๋กํ•˜์„ธ์š”",
},
];

Expand Down
2 changes: 1 addition & 1 deletion src/app/(protected)/notes/_components/GoalBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function GoalBanner({ title }: GoalBannerProps) {
alt="๋ชฉํ‘œ ์•„์ด์ฝ˜"
className="h-8 w-8 lg:h-10 lg:w-10"
/>
<p className="text-gray-750 min-w-0 flex-1 truncate text-base font-semibold sm:text-xl lg:text-2xl">
<p className="text-gray-750 min-w-0 flex-1 text-base font-semibold sm:text-xl lg:text-2xl">
{title}
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/(protected)/notes/_components/NoteItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default function NoteItem({
<header className="mb-2 flex items-center justify-between border-b border-b-gray-100 pb-2 sm:mb-3.5 sm:pb-4 lg:mb-4 lg:pb-5">
<NoteTitleView
title={title}
className="text-sm sm:text-lg lg:text-xl"
className="truncate text-sm sm:text-lg lg:text-xl"
/>
<button
type="button"
Expand Down
2 changes: 1 addition & 1 deletion src/app/(protected)/notes/_components/NoteLinkPreview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function NoteLinkPreview({
<div
className="bg-gray-25 flex cursor-pointer flex-col gap-1 rounded-xl px-4 py-3.5"
onClick={onClick}>
<div className="flex justify-between">
<div className="flex items-start justify-between">
<div className="flex items-start gap-1">
<img
src={`https://www.google.com/s2/favicons?domain=${new URL(linkMetadata.url).hostname}&sz=32`}
Expand Down
4 changes: 1 addition & 3 deletions src/app/(protected)/notes/_components/NoteTitleView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ export default function NoteTitleView({
alt="๋…ธํŠธ ์•„์ด์ฝ˜"
className="h-8 w-8 lg:h-10 lg:w-10"
/>
<span className={clsx("flex-1 truncate font-semibold", className)}>
{title}
</span>
<span className={clsx("flex-1 font-semibold", className)}>{title}</span>
</h3>
);
}
3 changes: 1 addition & 2 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,5 @@
}

[data-sonner-toast] {
min-width: 400px !important;
max-width: 90vw !important;
width: min(400px, 90vw);
}