Skip to content

Commit

Permalink
styles: update view page margins
Browse files Browse the repository at this point in the history
  • Loading branch information
MR-Addict committed Oct 26, 2024
1 parent 830bc05 commit f44ab2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/view/components/Table/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ export default function Table() {
<p className={style.avatar}>{note.name.at(0)}</p>

<div className="flex flex-col w-full gradient-50 py-4 px-5 rounded-md shadow-md duration-300">
<h2 className="flex flex-row gap-3 w-fit text-gray-500">
<h2 className="flex flex-row w-fit text-gray-500">
<p className="flex flex-row items-center gap-0.5 border-b border-b-gray-300">
<AiOutlineUser />
<span>{note.name}</span>
</p>

<button
type="button"
className="flex flex-row items-center gap-0.5 border-b border-b-gray-300"
className="flex flex-row items-center gap-0.5 border-b border-b-gray-300 ml-3 mr-2"
onClick={() => setIntervalFomatDate((prev) => !prev)}
>
<AiOutlineCalendar />
Expand All @@ -48,7 +48,7 @@ export default function Table() {
</button>

{note.useMarkdown && (
<span className="gradient-600 text-white text-xs rounded-sm h-fit px-0.5">Md</span>
<span className="gradient-600 text-white text-xs rounded-sm h-fit px-1 -translate-y-0.5">Md</span>
)}
</h2>

Expand Down

0 comments on commit f44ab2b

Please sign in to comment.