Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions client/debug.log
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[1222/083156.918:ERROR:directory_reader_win.cc(43)] FindFirstFile: The system cannot find the path specified. (0x3)
[1222/194253.328:ERROR:directory_reader_win.cc(43)] FindFirstFile: The system cannot find the path specified. (0x3)
[0101/121834.039:ERROR:directory_reader_win.cc(43)] FindFirstFile: The system cannot find the path specified. (0x3)
[0101/125833.828:ERROR:directory_reader_win.cc(43)] FindFirstFile: The system cannot find the path specified. (0x3)
[0104/090043.421:ERROR:directory_reader_win.cc(43)] FindFirstFile: The system cannot find the path specified. (0x3)
4 changes: 2 additions & 2 deletions client/src/pages/Story/Story.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ const Story = ({match,
<>
<h1 className="Story__name">{currentStoryName}</h1>
<div>
<ul>
<ul className="Story_ul">
{currentStoryCards
? currentStoryCards.map((cardText, index) => {
return (
// Let's make a component for Card
<div className='Card block' key={index}>
<div className='Card_block' key={index}>
{cardText}
</div>
);
Expand Down
13 changes: 12 additions & 1 deletion client/src/pages/Story/Story.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,17 @@

}

.Card{
.Story_ul {
margin:10px 10px 10px 10px;
}
.Card_block{

background-color: white;
padding:15px;
margin-top:10px;
margin-bottom: 10px;
border-radius:10px;
box-shadow: $box-shadow;
font-weight: weight(regular);

}
30 changes: 30 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"mongoose": "^5.11.7",
"node-sass": "^4.14.1",
"path": "^0.12.7",
"react-loader-spinner": "^3.1.14",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0"
}
Expand Down