Skip to content

Commit

Permalink
styling added to order component
Browse files Browse the repository at this point in the history
  • Loading branch information
fikretellek committed Mar 9, 2024
1 parent 767ca95 commit d34c97e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/Order/Order.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import RestaurantButton from "../RestaurantButton/RestaurantButton";
import React, { useState } from "react";
import "./Order.scss";

export default function Order({ orderType }) {
const [orders, setOrders] = useState(0);
Expand Down
11 changes: 11 additions & 0 deletions src/components/Order/Order.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.restaurant__item {
width: 300px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;

button {
margin-bottom: 5px;
}
}

0 comments on commit d34c97e

Please sign in to comment.