Skip to content

Commit 2d1cae2

Browse files
authored
Login (#22)
1 parent aa148da commit 2d1cae2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/NavBar/navBar.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
}
2222

2323
.logo {
24-
width: 150px;
24+
width: 120px;
2525
}
2626

2727
.logo img {

src/pages/CreateRoom/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const CreateRoom = () => {
1616
const handleCapacityChange = (amount: number) => {
1717
setMinCapacity((prev) => {
1818
const newValue = prev + amount;
19-
if (newValue >= 1 && newValue <= 4) {
19+
if (newValue >= 2 && newValue <= 4) {
2020
return newValue;
2121
}
2222
return prev;

0 commit comments

Comments
 (0)