Skip to content

Commit

Permalink
Add error log modal window for out-of-bounds glyphs
Browse files Browse the repository at this point in the history
  • Loading branch information
yinanazhou committed Jan 26, 2024
1 parent 69294a4 commit 47d072f
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 19 deletions.
3 changes: 3 additions & 0 deletions Neon-gh/assets/img/notification-info-icon-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions Neon-gh/assets/img/notification-info-icon-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 18 additions & 12 deletions Neon-gh/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -730,12 +730,9 @@ a:hover {
display: block;
}
.notification-container {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
display: grid;
grid-template-columns: 5fr 1fr;
width: 98%;
flex-wrap: wrap;
margin: 5px 0px;
gap: 10px;
}
Expand All @@ -746,24 +743,33 @@ a:hover {
display: flex;
justify-content: space-between;
align-items: center;
width: 85%;
flex-grow: 1;
width: 100%;
}
.remove-notif-icon-wrapper {
/* height: 100%; */
width: 30px;
.notification-btn-container {
display: flex;
justify-content: center;
align-items: center;
}
.notif-log-info-icon-wrapper {
border-right: 2px solid rgb(232 232 232);
padding-right: 5px;
}
.remove-notif-icon {
.notif-log-info-icon {
width: 22px;
cursor: pointer;
}
.notif-remove-icon {
cursor: pointer;
width: 30px;
}

/* Navigation panel styles for smaller devices */
@media screen and (max-width: 1023px) {
.notification-container {
justify-content: center;
gap: 7px;
}
.remove-notif-icon-wrapper {
.notif-remove-icon-wrapper {
min-width: 30px;
}
}
Expand Down
6 changes: 3 additions & 3 deletions Neon-gh/dashboard.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Neon-gh/editor.js

Large diffs are not rendered by default.

0 comments on commit 47d072f

Please sign in to comment.