Skip to content

Commit

Permalink
Fixing conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
AuraOfDivinity committed Oct 12, 2020
2 parents 01e9575 + 489eef1 commit 8c61bd5
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 3 deletions.
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,15 @@ Once the command completes you will have a new folder containing the cloned repo

**Setting up a remote upstream**

<<<<<<< HEAD
The next step is to set up a remote. Remotes simply represent paths or URLs to other versions of your repository. In our case, as we cloned from our fork on GitHub a default remote will have been setup for us called origin. This origin allows us to push and pull code from our forked repository hosted on GitHub. We can list the currently configured remotes on our machine using the “git remote” command.
=======
```shell
npm install
or
yarn global add
```
>>>>>>> master
Pushing and pulling from your own fork is very useful and this will be how you will work with the project most often. However, when working on that code, you’ll want to be starting from the most recent version of the code from the main donut-frontend repository. That code may have been updated and changed since you first made your fork. In order to get access to that latest code, we’ll setup a second remote which points to the main donut-frontend repository. We will not have commit rights there, so we cannot push changes, however, we will be able to fetch the latest commits that have occurred.

Expand All @@ -107,9 +115,16 @@ npm install
The npm install command will install all the project dependencies mentioned in the package.json file.
Once all the dependencies are completely installed the final step is to run our local instance using the following command.

<<<<<<< HEAD
```
npm start
```
=======
Adding yarn support for the packages just type `yarn`in the cli and hit enter.

Setting Up Database
------------
>>>>>>> master
Now visit the [http://localhost:3000](http://localhost:3000) using your favorite browser to see your very own donut-frontend app in action!

Expand Down Expand Up @@ -145,7 +160,15 @@ This command allows us to specify a name for our new branch and immediately chec
git checkout -b 223
```

<<<<<<< HEAD
Once we are on our new branch we can make changes to the code which address the issue. When we have made the required changes that address a particular issue, we need to commit that code to our branch. We can use the “git status” command to view the changes since our last commit.
=======
* 💬 Join the community on [Slack](https://slack.codeuino.org/)
* 📣 Stay up to date on new features and announcements on the following:
- [@Mailing List](mailto:[email protected]).
- [@Discussion Portal](https://groups.google.com/d/forum/codeuino-devel).
- [@Codeuino Wiki](https://docs.codeuino.org/).
>>>>>>> master
```
git status
Expand Down
5 changes: 5 additions & 0 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 src/actions/postAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,4 @@ export const pinPost = (postId) => async (dispatch) => {
} catch(error) {
dispatch(errorHandler(error))
}
}
}
25 changes: 25 additions & 0 deletions src/css/components/_modals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -505,3 +505,28 @@
}
}
}

.modal__body {
.modal__setting__btn__container {
.modal__save {
background: $color-modal-button-active;
box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
// border-radius: 34px;
width: 80px;
height: 38.5px;
margin-right: 20px;
margin-bottom: 10px;

.modal__buttontext {
font-family: $font-family-Inter;
font-style: normal;
font-weight: bold;
font-size: 14px;
line-height: 22px;
/* identical to box height */

color: #ffffff;
}
}
}
}
3 changes: 1 addition & 2 deletions src/user/dashboard/news-feed/news-feed.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import {
Card,
Paper,
InputBase,
ButtonGroup,
ListItem,
ListItemAvatar,
Avatar,
Expand All @@ -14,7 +13,7 @@ import {
CardMedia,
} from "@material-ui/core";
import { makeStyles } from "@material-ui/core/styles";
import { Button, Dropdown } from "react-bootstrap";
import { Button, Dropdown, ButtonGroup } from "react-bootstrap";
import AddEventModal from "./popups/AddEventModal";
import AddProjectModal from "./popups/AddProjectModal";
import PostReactionModal from "./popups/PostReactionsModal";
Expand Down

0 comments on commit 8c61bd5

Please sign in to comment.