Bladeren bron

Minor changes

feature/587
Djordje Mitrovic 3 jaren geleden
bovenliggende
commit
f7666bd81c

+ 1
- 1
src/AppRoutes.js Bestand weergeven

@@ -41,7 +41,7 @@ import MyOffers from './pages/MyOffers/MyOffers';
const AppRoutes = () => {
return (
<Switch>
<Route exact path={BASE_PAGE} component={LoginPage} />
<Route exact path={BASE_PAGE} component={HomePage} />
<Route exact path={LOGIN_PAGE} component={LoginPage} />
<Route path={NOT_FOUND_PAGE} component={NotFoundPage} />
<Route path={REGISTER_SUCCESSFUL_PAGE} component={RegisterSuccessful} />

+ 0
- 1
src/components/Cards/FilterCard/FilterDropdown/Radio/FilterRadioDropdown.js Bestand weergeven

@@ -117,7 +117,6 @@ const FilterRadioDropdown = (props) => {
</DropdownItem>
)}
{dataToShow.map((item) => {
console.log(item);
return (
<DropdownItem
key={item.name}

+ 1
- 0
src/components/Profile/ProfileOffers/ProfileOffers.styled.js Bestand weergeven

@@ -101,5 +101,6 @@ export const OffersScroller = styled(HorizontalScroller)`
margin-left: 0;
& div {
margin-left: 0;
margin-right: 0;
}
`

+ 1
- 1
src/layouts/ItemDetailsLayout/ItemDetailsLayout.styled.js Bestand weergeven

@@ -21,7 +21,7 @@ export const ItemDetailsLayoutContainer = styled(Container)`
`;

export const RightCard = styled(Grid)`
margin-top: 30px;
margin-top: 48px;
border-top-right-radius: 4px;
width: 100%;
/* @media (max-width: 800px) {

Laden…
Annuleren
Opslaan