Added sort button with asc/desc price sort

This commit is contained in:
lootboxer 2025-07-01 00:16:26 +03:00
parent e5478bb1c6
commit 4127f6af14
13 changed files with 226 additions and 71 deletions

View file

@ -1,12 +1,20 @@
.buttonContainer {}
.buttonOutlineContainer {
background-color: var(--background-color);
color: var(--primary-color);
border-radius: 4px;
border: 1px solid var(--primary-color);
}
.button {
display: flex;
padding: 0.5rem 1rem;
background-color: #3498db;
background-color: var(--primary-color);
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
display: flex;
flex-direction: column;
gap: 8px;
width: fit-content;
@ -14,3 +22,5 @@
background-color: grey;
}
}
.iconAfter {}