Skip to content

Commit

Permalink
added buy_cooldown in compose & category-styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Paulsenik committed Nov 11, 2024
1 parent 480f2b1 commit 400c57b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ services:
context: backend
environment:
LDAP_URI: ldap://ldap:1389/dc=fsinfo,dc=fim,dc=uni-passau,dc=de
# BUY_COOLDOWN: 60000
# PORT: 8081
# MAIL_USER_NAME: test@localhost
# MAIL_USER_PASSWORD: p455w0rd
Expand Down
4 changes: 4 additions & 0 deletions frontend/public/styles/mc.css
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,10 @@ h1 {
box-shadow: none;
}

.ItemGroup > h2{
color: #ffffff;
}

/*
Tabs
*/
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/Components/SearchTab/ItemSelection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ export function ItemSelection() {
<div style={{ flexGrow: "0" }}>
<UserSummaryCard user={user} />
</div>
<div>
<div id="category-box">
{groupedItems.map(({ category, items }) => (
<div key={category}>
<div key={category} className="ItemGroup">
<h2>{category}</h2>
<div className="SmallGridContainer">
{items.map((item, index) => (
Expand Down

0 comments on commit 400c57b

Please sign in to comment.