Skip to content

Commit

Permalink
option alignment fix in note
Browse files Browse the repository at this point in the history
  • Loading branch information
t007rushi committed Apr 7, 2022
1 parent f3b9e1f commit 2c3a7e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Note/note.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
}

.note-options-set {
justify-content: flex-end;
justify-content: space-between;
gap: 10px;
align-items: baseline;
}
Expand All @@ -45,7 +45,7 @@
border-radius: 10px;
border: 1px solid var(--foreground-color);
padding: 4px;
color: var(--foreground-color);
color: var(--accent-one-color);
background-color: var(--accent-four-color);
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/NoteCard/NoteCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const NoteCard = ({ Note, id }) => {
);
})}
</div>
<div className="note-moment">
<div className="moment">
<Moment fromNow>{Note.createdAt}</Moment>
</div>
<div className="flex-row note-options-set">
Expand Down

0 comments on commit 2c3a7e6

Please sign in to comment.