Skip to content

Commit

Permalink
[Fix] Adjust layout widths and add search bar styling for better resp…
Browse files Browse the repository at this point in the history
…onsiveness
  • Loading branch information
biliesilva committed Dec 19, 2024
1 parent cbac349 commit 77bd50e
Showing 1 changed file with 26 additions and 4 deletions.
30 changes: 26 additions & 4 deletions src/frontend/screens/Quests/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,34 @@
}

.detailsWrapper {
width: 800px;
width: 650px;
max-width: unset !important;

background-color: var(--color-neutral-800);
border: none;

@media (max-width: 1300px) {
width: 540px;
//Steam Deck
@media (max-width: 1280px) {
width: 600px;
}

@media (max-width: 1024px) {
width: 390px;
}
}

.tableContainer {
background-color: var(--color-neutral-800);
overflow-y: hidden;

//Steam DecK
@media (max-width: 1280px) {
width: 510px;
}

@media (max-width: 1024px) {
width: 480px;
}
}

.questSelectedLayout {
Expand All @@ -56,10 +70,18 @@
}
}

.searchBar {
display: flex;
justify-content: space-between;
align-items: center;
margin: var(--space-2xs);
font-size: var(--text-3xs);
padding-right: var(--space-2xs);
}

.loadingContainer {
padding: var(--space-2lg);
height: 100%;

display: flex;
justify-content: center;
align-items: center;
Expand Down

0 comments on commit 77bd50e

Please sign in to comment.