We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa148da commit 2d1cae2Copy full SHA for 2d1cae2
src/components/NavBar/navBar.css
@@ -21,7 +21,7 @@
21
}
22
23
.logo {
24
- width: 150px;
+ width: 120px;
25
26
27
.logo img {
src/pages/CreateRoom/index.tsx
@@ -16,7 +16,7 @@ const CreateRoom = () => {
16
const handleCapacityChange = (amount: number) => {
17
setMinCapacity((prev) => {
18
const newValue = prev + amount;
19
- if (newValue >= 1 && newValue <= 4) {
+ if (newValue >= 2 && newValue <= 4) {
20
return newValue;
return prev;
0 commit comments