diff --git a/src/App.css b/src/App.css
index 19197c3..4bee1f4 100644
--- a/src/App.css
+++ b/src/App.css
@@ -3,6 +3,8 @@
}
+
+
.App-logo {
height: 40vmin;
pointer-events: none;
diff --git a/src/assets/icons/logo.png b/src/assets/icons/logo.png
new file mode 100644
index 0000000..42ea219
Binary files /dev/null and b/src/assets/icons/logo.png differ
diff --git a/src/components/GradeFilter/index.scss b/src/components/GradeFilter/index.scss
index a5a7815..e9ffdc5 100644
--- a/src/components/GradeFilter/index.scss
+++ b/src/components/GradeFilter/index.scss
@@ -56,7 +56,7 @@
font-size: calc(100vw / 120);
}
li{
- font-size: calc(100vw / 90);
+ font-size: calc(100vw / 110);
background-color: rgba(255, 255, 255, 0) ;
z-index: 100;
padding: 10px 0px !important;
diff --git a/src/components/HomeSearchBox/index.scss b/src/components/HomeSearchBox/index.scss
index 0dc3ef0..019bcce 100644
--- a/src/components/HomeSearchBox/index.scss
+++ b/src/components/HomeSearchBox/index.scss
@@ -37,18 +37,22 @@
&__voice {
display: none;
}
+
form {
width: 1000px;
input {
- font-size: 20px;
+ font-size: 16px;
padding-right: 20px;
&::placeholder {
- font-size: 20px;
+ font-size: 16px;
}
}
button {
- width: 80px;
+ width: 70px;
height: 60px;
+ img{
+ width: 35px;
+ }
}
}
ul {
diff --git a/src/components/Menu/index.js b/src/components/Menu/index.js
new file mode 100644
index 0000000..96d4bf7
--- /dev/null
+++ b/src/components/Menu/index.js
@@ -0,0 +1,67 @@
+import * as React from 'react';
+import { styled, alpha } from '@mui/material/styles';
+import Button from '@mui/material/Button';
+import Menu from '@mui/material/Menu';
+import MenuItem from '@mui/material/MenuItem';
+import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown';
+
+const StyledMenu = styled((props) => (
+