Skip to content

Commit 5225029

Browse files
committed
Merge branch 'features'
2 parents 9d72081 + b7d5c6e commit 5225029

File tree

8 files changed

+376
-29
lines changed

8 files changed

+376
-29
lines changed

package-lock.json

Lines changed: 26 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,8 @@
4040
"last 1 firefox version",
4141
"last 1 safari version"
4242
]
43+
},
44+
"devDependencies": {
45+
"@babel/plugin-proposal-private-property-in-object": "^7.21.11"
4346
}
4447
}

src/App.jsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ function App() {
1414
<BrowserRouter>
1515
<Routes>
1616
<Route path="/" element={<MainPage />} />
17-
<Route path="/post" element={<CreatePage />} />
1817
<Route path="/list" element={<ListPage />} />
19-
<Route path="/post/:id" element={<PostId />} />
20-
<Route path="/post/:id/messages/" element={<PostMessage />} />
18+
<Route path="/post/">
19+
<Route index element={<CreatePage />} />
20+
<Route path=":id" element={<PostId />} />
21+
<Route path=":id/messages/" element={<PostMessage />} />
22+
</Route>
2123
</Routes>
2224
</BrowserRouter>
2325
</React.StrictMode>
40.7 KB
Loading
28.7 KB
Loading

src/components/domain/list/ListContainer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import PrimaryButton from "../../ui/button/PrimaryButton";
1010

1111
const LinkButton = styled(PrimaryButton)`
1212
width: auto;
13-
min-width: calc(100vw * (280 / 1200));
13+
min-width: 280px;
1414
margin-top: 65px;
1515
height: 56px;
1616

0 commit comments

Comments
 (0)