Skip to content

Commit

Permalink
css fix
Browse files Browse the repository at this point in the history
  • Loading branch information
erenfn committed Aug 20, 2024
1 parent 6f9d4ec commit 70f722b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/TourComponents/List/List.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import ListItem from './ListItem/ListItem';

const List = ({ items, onSelectItem }) => {
return (
<div>
<>
{items.map(item => (
<ListItem
key={item.idItem}
Expand All @@ -16,7 +16,7 @@ const List = ({ items, onSelectItem }) => {
onEdit={item.onEdit}
/>
))}
</div>
</>
);
};

Expand Down
4 changes: 2 additions & 2 deletions frontend/src/scenes/tours/ProductTourStyles.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
}

.content-area {
flex: 2;
margin-right: 20px;
flex: 3;
margin-right: 2rem;
}

.tour-info-container {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.product-page-container {
padding: 4% 6%;
padding: 2% 3%;
}

.product-page-header {
Expand Down

0 comments on commit 70f722b

Please sign in to comment.