Skip to content

Commit

Permalink
Update style.css with transition and border changes
Browse files Browse the repository at this point in the history
  • Loading branch information
LyubomirT committed Jan 27, 2024
1 parent faffd51 commit 13ca3fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ body *:not(#note-content):not(#note-title) {
padding: 10px;
cursor: pointer;
border-bottom: 1px solid #ccc;
transition: background-color 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
border-left: none;
}

/* Set the font weight and margin for the note title */
Expand All @@ -96,6 +97,7 @@ body *:not(#note-content):not(#note-title) {
/* Set the background color for the selected note item */
.note-item.selected {
background-color: #ddd;
border-left: 5px solid #333;
}

/* Set the flex, padding, overflow, and order for the edit area */
Expand Down

0 comments on commit 13ca3fd

Please sign in to comment.