Skip to content

Commit

Permalink
fix: 💄 fix collapsing sat-infobox on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
thkruz committed Sep 29, 2024
1 parent f515cdd commit 9c7efa0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion public/css/limitedUI.css
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ ul li {
}

.right-btn-menu ul li:hover {
background-color: var(--colorSecondaryDarken1);
background-color: var(--color-primary-dark);
}

.right-btn-menu ul li:hover a {
Expand Down
3 changes: 1 addition & 2 deletions public/css/responsive-lg.css
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,7 @@
bottom: var(--bottom-menu-height);
margin-top: 25px;
right: 0px;
width: 355px;
height: fit-content;
width: 355px;
max-height: 60%;
}

Expand Down
5 changes: 3 additions & 2 deletions src/plugins/select-sat-manager/sat-info-box.css
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
}

.section-collapse:active {
background-color: var(--colorSecondaryDarken1);
background-color: var(--color-primary-dark);
color: white;
scale: 0.9;
}
Expand Down Expand Up @@ -136,7 +136,8 @@
background: var(--color-dark-background);
cursor: default;
bottom: 0px;
height: 30%;
height: fit-content;
max-height: 30%;
width: 100%;
border: 5px solid var(--color-dark-border);
overflow: auto;
Expand Down

0 comments on commit 9c7efa0

Please sign in to comment.