Skip to content

Commit 7a583bf

Browse files
committed
design fixup
1 parent 3c71d46 commit 7a583bf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

client/src/NoteComponents/NoteItem.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ function NoteItem({ note = new Note(), index }) {
5858
style={footerBtn.style}
5959
onClick={() => editNoteOrder(index, false)}
6060
>
61-
❱
61+
<i className="bi bi-chevron-compact-right"></i>
6262
</button>
6363
<button
6464
className={footerBtn.className}
6565
style={footerBtn.style}
6666
onClick={() => editNoteOrder(index, true)}
6767
>
68-
&#10096;
68+
<i className="bi bi-chevron-compact-left"></i>
6969
</button>
7070
</div>
7171
</div>

client/src/Pages/NotesPage.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929

3030
.item-footer-btn {
3131
transition: opacity 0.15s !important;
32-
opacity: 0.2 !important;
32+
opacity: 0.3 !important;
3333
}
3434
.item-footer-btn:hover {
35-
opacity: 0.9 !important;
35+
opacity: 1 !important;
3636
}

0 commit comments

Comments
 (0)