Skip to content

Commit

Permalink
[#7] feat : restaurant
Browse files Browse the repository at this point in the history
  • Loading branch information
JeongBin0227 committed Feb 21, 2021
1 parent 3a11d85 commit 0b79ab7
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/components/Restaurant/style.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
@use '@/style/package' as *;

.restaurent {
position: absolute;
display: flex;
right: 2rem;
top: 5rem;
background-color: rgba($color-black, 0.5);
padding: 1rem;
width: 80rem;
height: 33rem;
border-radius: 0.8rem;
overflow-y: scroll;

&::-webkit-scrollbar {
display: none;
}
.left {
width: 100%;
height: 100%;
display: block;
padding-right: 1.2rem;
}
.right {
width: 100%;
height: 100%;
}
}
11 changes: 11 additions & 0 deletions src/components/Restaurent/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react'
import './style.scss'
import { RestaurantMap } from '@/components/Restaurent/RestarentMap/index'

export const Restaurent: React.FC<{}> = ({}) => {
return (
<div className="restaurent">
<RestaurantMap></RestaurantMap>
</div>
)
}

0 comments on commit 0b79ab7

Please sign in to comment.