Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feature/dev-env
Browse files Browse the repository at this point in the history
  • Loading branch information
IkeHunter committed Jan 21, 2025
2 parents 435c068 + e26a7ba commit 4f401ce
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 27 deletions.
44 changes: 19 additions & 25 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"cross-env": "^7.0.3",
"material-icons": "^1.13.12",
"react": "^18.2.0",
"react-cookie": "^6.1.1",
"react-cookie": "^7.2.2",
"react-dom": "^18.2.0",
"react-redux": "^9.0.4",
"react-router-dom": "^6.26.2",
Expand Down
27 changes: 26 additions & 1 deletion src/apps/admin/pages/AdminBoards.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,34 @@
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
}

.boardImage {
width: 100%;
height: auto;
}
}

@media (max-width: 768px) {
.header {
font-size: 2.5vh;
margin-top: 4vh;
margin-bottom: 3vh;
}

.Board {
flex-direction: column;
}
}

@media (max-width: 480px) {
.header {
font-size: 2vh;
margin-top: 3vh;
margin-bottom: 2vh;
}

.boardImage {
width: 100%;
}
}

0 comments on commit 4f401ce

Please sign in to comment.