Skip to content

Commit

Permalink
fix(alerts panel): unwanted horizontal scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
Miodec committed Feb 28, 2024
1 parent 8e0f124 commit 35b87c4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions frontend/src/styles/popups.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1670,6 +1670,7 @@
gap: 2rem;
align-content: baseline;
height: 100%;
grid-auto-columns: 100%;
}
.accountAlerts > .title,
.notificationHistory > .title,
Expand All @@ -1691,6 +1692,7 @@
.list {
display: grid;
gap: 1rem;
grid-template-columns: 100%;
.nothing {
width: 100%;
color: var(--text-color);
Expand Down Expand Up @@ -1738,6 +1740,7 @@
color: var(--text-color);
transition: 0.125s;
opacity: 1;
word-wrap: break-word;
}
.buttons {
grid-area: buttons;
Expand Down Expand Up @@ -1769,14 +1772,14 @@
}
.psas .list .item {
grid-template-areas: "indicator body";
grid-template-columns: 0.25rem auto;
grid-template-columns: 0.25rem calc(100% - 0.25rem);
.body {
opacity: 1;
}
}
.notificationHistory .list .item {
grid-template-areas: "indicator title" "indicator body";
grid-template-columns: 0.25rem auto;
grid-template-columns: 0.25rem calc(100% - 0.25rem);
.title {
font-size: 0.75rem;
color: var(--sub-color);
Expand Down

0 comments on commit 35b87c4

Please sign in to comment.