Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Jul 25, 2024
1 parent 6365913 commit b39d9eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/Tray.js
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,9 @@ formatCreatedTime() {
trayElement.style.borderBottomColor = this.borderColor;
trayElement.style.borderBottomWidth = '3px';
trayElement.style.borderBottomStyle = 'solid';
trayElement.style.borderTopColor = "#000000";
trayElement.style.borderTopWidth = '1px';
trayElement.style.borderTopStyle = 'solid';
}
saveToLocalStorage();
}
Expand Down
6 changes: 5 additions & 1 deletion src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
background-color: var(--tray-bg-color);
cursor: move;
border: 0px;
border-top-width: 1px;
border-top-color: #000;
border-bottom-width: 3px;
border-left-width: 3px;
border-right: none;
Expand Down Expand Up @@ -95,7 +97,9 @@

/* Tray Content */
.tray-content {
padding: 5px 0 5px 5px;
padding-left: 1px;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 20px;
background-color: var(--tray-content-bg-color);
display: flex;
Expand Down

0 comments on commit b39d9eb

Please sign in to comment.