Skip to content

Commit

Permalink
implemented select menu and right section completed
Browse files Browse the repository at this point in the history
  • Loading branch information
데스크탑 committed Nov 20, 2023
1 parent ce98a4a commit 3779ee0
Show file tree
Hide file tree
Showing 43 changed files with 8,327 additions and 8,047 deletions.
87 changes: 87 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/jquery": "^3.5.27",
"@types/node": "^16.18.61",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"file-saver": "^2.0.5",
"global": "^4.4.0",
"jquery": "^3.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.19.0",
"react-scripts": "5.0.1",
"sass": "^1.69.5",
"typescript": "^4.9.5",
Expand Down Expand Up @@ -40,5 +45,8 @@
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/file-saver": "^2.0.7"
}
}
3 changes: 3 additions & 0 deletions public/img/main/arrow_base.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/img/main/arrow_middle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/img/main/arrow_top.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file added public/img/note/bergamot.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/bergamot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/citrus.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/img/note/citrus.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/coconut.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/coconut.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/coconut_new.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/eucalyptus.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/eucalyptus.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/floral.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/floral.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/flowder.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/flowder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/lavender.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/lavender.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/minty.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/minty.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/musk.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/musk.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/strawberry.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/strawberry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/note/vanilla.jpg
Binary file added public/img/note/vanilla.png
Binary file added public/img/note/woody.jpg
Binary file added public/img/note/woody.png
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>GAMSUNG</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
14 changes: 13 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,23 @@ import React from 'react';
import Main from './view/Main';
import './CSS/base.scss';
import './CSS/components.scss';
import Admin from './view/Admin';
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';

function App() {
return (
<div className="App">
<Main></Main>
<Router>
<Routes>
<Route
path="/"
element={
<Main />
}
/>
<Route path="/admin" element={<Admin />} />
</Routes>
</Router>
</div>
);
}
Expand Down
26 changes: 17 additions & 9 deletions src/CSS/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,6 @@ $black: #32353C;
$line_gray: #DCE1E8;
$font_gray: #4E5968;

:export{
color{
label_0: $label_0;
label_1: $label_1;
label_2: $label_2;
label_3: $label_3;
label_4: $label_4;
}
}

//lines
$gray_line: 1px solid $line_gray;
Expand Down Expand Up @@ -195,10 +186,27 @@ $card_shadow: 0px 4px 8px 0px rgba(161, 170, 179, 0.30);

html{
font-size: 16px;
::-webkit-scrollbar {
width: 12px;
background-color: none;
cursor: pointer;
}
::-webkit-scrollbar-thumb {
background-color: #2f354227;
width: 4px;
cursor: pointer;
border-radius: 10rem;
}
// ::-webkit-scrollbar-track {
// background-color: rgb(107, 21, 21);
// width: 10px;
// }

}

body{
background-color: $background;
overflow: hidden;
}


Loading

0 comments on commit 3779ee0

Please sign in to comment.