Front page

This commit is contained in:
2020-07-19 20:45:24 +02:00
parent a71a2a7a60
commit 29efa13410
23 changed files with 1099 additions and 93 deletions

858
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -3,9 +3,11 @@
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@material-ui/core": "^4.11.0",
"@testing-library/jest-dom": "^4.2.4", "@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0", "@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1", "@testing-library/user-event": "^7.2.1",
"node-sass": "^4.14.1",
"react": "^16.13.1", "react": "^16.13.1",
"react-dom": "^16.13.1", "react-dom": "^16.13.1",
"react-scripts": "3.4.1" "react-scripts": "3.4.1"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -4,16 +4,8 @@
<meta charset="utf-8" /> <meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" /> <meta name="description" content="Menui - Food guide" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!-- <!--
Notice the use of %PUBLIC_URL% in the tags above. Notice the use of %PUBLIC_URL% in the tags above.
@@ -24,7 +16,7 @@
work correctly both with client-side routing and a non-root public URL. 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`. Learn how to configure a non-root public URL by running `npm run build`.
--> -->
<title>React App</title> <title>Menui - Food Guide</title>
</head> </head>
<body> <body>
<noscript>You need to enable JavaScript to run this app.</noscript> <noscript>You need to enable JavaScript to run this app.</noscript>

View File

@@ -1,38 +0,0 @@
.App {
text-align: center;
}
.App-logo {
height: 40vmin;
pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
}
.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-link {
color: #61dafb;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

View File

@@ -1,24 +1,22 @@
import React from 'react'; import React from "react";
import logo from './logo.svg'; import logo from "./public/logo_mint.svg";
import './App.css'; import "./App.scss";
import TopBar from "./components/TopBar";
import Footer from "./components/Footer";
import SearchPanel from "./components/SearchPanel";
function App() { function App() {
return ( return (
<div className="App"> <div className="App">
<header className="App-header"> <TopBar />
<img src={logo} className="App-logo" alt="logo" /> <div className="main-container">
<p> <img src={logo} className="logo" alt="Menui logo" />
Edit <code>src/App.js</code> and save to reload. <SearchPanel />
<p className="darkParagraph">
Sprawdź co serwuje Twoja ulubiona restauracja.
</p> </p>
<a </div>
className="App-link" <Footer />
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div> </div>
); );
} }

40
src/App.scss Normal file
View File

@@ -0,0 +1,40 @@
@import "./Design.scss";
@import "./styles/TopBar.scss";
@import "./styles/SearchPanel.scss";
.App {
padding: 0;
margin: 0;
height: 100%;
background-color: $bg-color;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
}
.logo {
height: 5rem;
margin: 16px;
}
.footer {
width: 100%;
text-align: center;
}
p {
font-size: 14px;
font-weight: 300;
}
.darkParagraph {
color: $darker-color;
}
.main-container {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}

6
src/Design.scss Normal file
View File

@@ -0,0 +1,6 @@
$main-color: #01c3a9;
$secondary-color: #307482;
$darker-color: #234f53;
$bg-color: #ffffff;
$accents-color: #0e8496;
$lighter-color: #00d1b5;

0
src/Services.js Normal file
View File

View File

@@ -0,0 +1,21 @@
import React from "react";
import { withStyles } from "@material-ui/core/styles";
import Button from "@material-ui/core/Button";
const StyledButton = withStyles({
root: {
background: "none",
color: "white",
margin: "16px 16px 16px 0px",
padding: "8px 12px 8px 12px",
borderColor: "white",
border: "solid 1px",
},
label: {
textTransform: "none",
},
})(Button);
export default function ButtonPrimary(props) {
return <StyledButton>{props.text}</StyledButton>;
}

View File

@@ -0,0 +1,23 @@
import React from "react";
import { withStyles } from "@material-ui/core/styles";
import Button from "@material-ui/core/Button";
const StylizedButton = withStyles({
root: {
background: "#01c3a9",
color: "white",
margin: "16px 16px 16px 0px",
padding: "8px 12px 8px 12px",
borderColor: "white",
"&:hover": {
backgroundColor: "#00af98",
},
},
label: {
textTransform: "none",
},
})(Button);
export default function ButtonSecondary(props) {
return <StylizedButton>{props.text}</StylizedButton>;
}

View File

@@ -0,0 +1,38 @@
import React from "react";
import TextField from "@material-ui/core/TextField";
import { makeStyles } from "@material-ui/core/styles";
import { createMuiTheme, ThemeProvider } from "@material-ui/core/styles";
const styles = makeStyles({
root: {
margin: "6px",
textDecorationColor: "#0e8496",
},
input: {
color: "#0e8496",
},
});
const theme = createMuiTheme({
palette: {
primary: {
main: "#0e8496",
},
},
});
export default function CustomTextInput(props) {
const classes = styles();
return (
<ThemeProvider theme={theme}>
<TextField
id={props.id}
className={classes.root}
label={props.label}
type="search"
variant="outlined"
InputProps={{ className: classes.input }}
></TextField>
</ThemeProvider>
);
}

11
src/components/Footer.js Normal file
View File

@@ -0,0 +1,11 @@
import React from "react";
export default class Footer extends React.Component {
render() {
return (
<div className="footer">
<p>Bankai Software 2020</p>
</div>
);
}
}

View File

@@ -0,0 +1,21 @@
import React from "react";
import ButtonSecondary from "./ButtonSecondary";
import CustomTextInput from "./CustomTextInput";
export default class SearchPanel extends React.Component {
render() {
return (
<div className="searchPanel">
<CustomTextInput
color="primary"
id="search"
label="Miasto, nazwa lokalu,..."
type="search"
/>
<div className="btnContainer">
<ButtonSecondary text="Szukaj" />
</div>
</div>
);
}
}

15
src/components/TopBar.js Normal file
View File

@@ -0,0 +1,15 @@
import React from "react";
import ButtonSecondary from "./ButtonSecondary";
import logo from "../public/logo_mint.svg";
export default function TopBar() {
return (
<div className="topBar">
<img src={logo} className="topBarLogo" alt="Menui logo" />
<div>
<ButtonSecondary text="Dodaj Lokal" />
<ButtonSecondary text="Logowanie" />
</div>
</div>
);
}

View File

@@ -1,13 +0,0 @@
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}

View File

@@ -1,14 +1,14 @@
import React from 'react'; import React from "react";
import ReactDOM from 'react-dom'; import ReactDOM from "react-dom";
import './index.css'; import "./index.scss";
import App from './App'; import App from "./App";
import * as serviceWorker from './serviceWorker'; import * as serviceWorker from "./serviceWorker";
ReactDOM.render( ReactDOM.render(
<React.StrictMode> <React.StrictMode>
<App /> <App />
</React.StrictMode>, </React.StrictMode>,
document.getElementById('root') document.getElementById("root")
); );
// If you want your app to work offline and load faster, you can change // If you want your app to work offline and load faster, you can change

23
src/index.scss Normal file
View File

@@ -0,0 +1,23 @@
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap");
@import "./Design.scss";
html {
height: 100%;
}
body {
position: absolute;
width: 100%;
padding: 0;
margin: 0;
height: 100%;
background-color: $bg-color;
color: $main-color;
font-family: "Roboto", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#root {
height: 100%;
}

View File

@@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3">
<g fill="#61DAFB">
<path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/>
<circle cx="420.9" cy="296.5" r="45.7"/>
<path d="M520.5 78.1z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

1
src/public/logo_mint.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.0 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 188.1 80.95"><defs><style>.cls-1{fill:#fff;}</style></defs><title>Zasób 4</title><g id="Warstwa_2" data-name="Warstwa 2"><g id="Warstwa_2-2" data-name="Warstwa 2"><path class="cls-1" d="M66,16.93A11.46,11.46,0,0,0,55.3,15.85a11.45,11.45,0,0,0-5.58-9.24c-6.06-3.83-12.91-2-17,4.52L.37,62a2.3,2.3,0,0,0,.72,3.21,2.29,2.29,0,0,0,3.21-.73L36.61,13.62C39.38,9.24,43.47,8,47.3,10.44s4.47,6.63,1.7,11L23.47,62a2.32,2.32,0,1,0,3.93,2.48L52.94,23.94c2.77-4.38,6.86-5.6,10.68-3.18s4.48,6.64,1.71,11L46.24,62a2.33,2.33,0,1,0,3.94,2.48L69.26,34.26C73.4,27.73,72.1,20.76,66,16.93Z"/><path class="cls-1" d="M99.15,53.56a2.45,2.45,0,0,0-1.71.75l-.07.07-.06.08a13,13,0,0,1-10.39,5.06A13.43,13.43,0,0,1,73.57,45.73,13.43,13.43,0,0,1,86.92,31.94a12.92,12.92,0,0,1,7.47,2.31L85.27,44.87a2.39,2.39,0,0,0-.62,1.57,2.27,2.27,0,0,0,2.27,2.27,2.31,2.31,0,0,0,1.7-.75l0-.05,10.4-12.19a2.64,2.64,0,0,0,.77-1.78A2.55,2.55,0,0,0,99,32.11a17.86,17.86,0,0,0-12.11-4.7,18.32,18.32,0,0,0,0,36.64,18,18,0,0,0,13.87-6.53,2.59,2.59,0,0,0,.68-1.69A2.27,2.27,0,0,0,99.15,53.56Z"/><path class="cls-1" d="M120.72,27.41c-8.86,0-14.81,6.43-14.81,16v18a2.33,2.33,0,0,0,4.66,0v-18c0-7.07,3.89-11.47,10.15-11.47s10.15,4.4,10.15,11.47v18a2.33,2.33,0,0,0,4.66,0v-18C135.53,33.84,129.58,27.41,120.72,27.41Z"/><path class="cls-1" d="M168.82,27.72a2.31,2.31,0,0,0-2.33,2.33v18c0,7.18-3.79,11.47-10.15,11.47s-10.15-4.4-10.15-11.47v-18a2.33,2.33,0,1,0-4.66,0v18c0,9.57,5.95,16,14.81,16s14.81-6.43,14.81-16v-18A2.31,2.31,0,0,0,168.82,27.72Z"/><path class="cls-1" d="M179.48,27.72a2.31,2.31,0,0,0-2.33,2.33V61.41a2.33,2.33,0,0,0,4.66,0V30.05A2.31,2.31,0,0,0,179.48,27.72Z"/><path class="cls-1" d="M129.48,78.39v-6h-1.1v-.32h1.1V71a2,2,0,0,1,.44-1.39,1.54,1.54,0,0,1,1.22-.49,2.55,2.55,0,0,1,.39,0,2.33,2.33,0,0,1,.36.08l0,.3-.34-.07-.36,0a1.23,1.23,0,0,0-1,.42A1.7,1.7,0,0,0,129.8,71v1h1.68v.32H129.8v6Z"/><path class="cls-1" d="M132.28,75.1a3.32,3.32,0,0,1,.78-2.28,2.69,2.69,0,0,1,4,0,3.32,3.32,0,0,1,.77,2.28v.24a3.32,3.32,0,0,1-.77,2.29,2.71,2.71,0,0,1-4,0,3.33,3.33,0,0,1-.78-2.29Zm.32.24a3.12,3.12,0,0,0,.67,2,2.34,2.34,0,0,0,3.58,0,3.13,3.13,0,0,0,.67-2V75.1a3.11,3.11,0,0,0-.68-2,2.32,2.32,0,0,0-3.57,0,3.11,3.11,0,0,0-.67,2Z"/><path class="cls-1" d="M138.85,75.1a3.36,3.36,0,0,1,.77-2.28,2.7,2.7,0,0,1,4,0,3.36,3.36,0,0,1,.77,2.28v.24a3.37,3.37,0,0,1-.77,2.29,2.71,2.71,0,0,1-4,0,3.33,3.33,0,0,1-.78-2.29Zm.32.24a3.12,3.12,0,0,0,.67,2,2.34,2.34,0,0,0,3.58,0,3.13,3.13,0,0,0,.67-2V75.1a3.11,3.11,0,0,0-.68-2,2.32,2.32,0,0,0-3.57,0,3.11,3.11,0,0,0-.67,2Z"/><path class="cls-1" d="M145.63,75.21a4.05,4.05,0,0,1,.63-2.39,2,2,0,0,1,1.76-.89,2.32,2.32,0,0,1,2.14,1.24V69.25h.32V74h0v2.61h0v1.75h-.31v-1a2.27,2.27,0,0,1-.87.81,2.72,2.72,0,0,1-1.28.29,2,2,0,0,1-1.75-.85,3.85,3.85,0,0,1-.63-2.32Zm.32.13a3.72,3.72,0,0,0,.52,2.08,1.73,1.73,0,0,0,1.53.78,2.36,2.36,0,0,0,1.37-.38,2,2,0,0,0,.79-1v-3a2.62,2.62,0,0,0-.74-1.13,2.06,2.06,0,0,0-1.41-.45,1.7,1.7,0,0,0-1.53.82,3.94,3.94,0,0,0-.53,2.14Z"/><path class="cls-1" d="M155.07,75.21a4.05,4.05,0,0,1,.63-2.39,2,2,0,0,1,1.76-.89,2.33,2.33,0,0,1,1.28.34,2.36,2.36,0,0,1,.86.91l.05-1.13h.27v2h0v2.61h0v1.78a2.56,2.56,0,0,1-.64,1.87,2.32,2.32,0,0,1-1.76.66,4.61,4.61,0,0,1-1-.1,3.82,3.82,0,0,1-.88-.26l.09-.32a4.51,4.51,0,0,0,.83.28,4.19,4.19,0,0,0,.91.09,2,2,0,0,0,1.55-.57,2.31,2.31,0,0,0,.54-1.65v-1a2.39,2.39,0,0,1-.87.8,2.67,2.67,0,0,1-1.29.29,2,2,0,0,1-1.74-.85,3.85,3.85,0,0,1-.63-2.32Zm.32.13a3.64,3.64,0,0,0,.52,2.08,1.73,1.73,0,0,0,1.53.78,2.42,2.42,0,0,0,1.36-.37,2.14,2.14,0,0,0,.8-1v-3a2.67,2.67,0,0,0-.75-1.11,2,2,0,0,0-1.4-.45,1.7,1.7,0,0,0-1.53.82,3.86,3.86,0,0,0-.53,2.14Z"/><path class="cls-1" d="M166.18,77.28a2.26,2.26,0,0,1-.85.91,2.68,2.68,0,0,1-1.34.32,1.86,1.86,0,0,1-1.53-.69,3.41,3.41,0,0,1-.56-2.15V72.05h.32v3.63a3.14,3.14,0,0,0,.47,1.9,1.56,1.56,0,0,0,1.29.62,2.18,2.18,0,0,0,1.5-.48,2.14,2.14,0,0,0,.68-1.24V72.05h.33v3.73h0a.76.76,0,0,1,0,.15v2.46h-.27Z"/><path class="cls-1" d="M168.89,70.06h-.32v-.81h.32Zm0,8.33h-.32V72.05h.32Z"/><path class="cls-1" d="M170.68,75.21a4.05,4.05,0,0,1,.63-2.39,2,2,0,0,1,1.76-.89,2.32,2.32,0,0,1,2.14,1.24V69.25h.32V74h0v2.61h0v1.75h-.31v-1a2.27,2.27,0,0,1-.87.81,2.73,2.73,0,0,1-1.29.29,2,2,0,0,1-1.74-.85,3.85,3.85,0,0,1-.63-2.32Zm.32.13a3.72,3.72,0,0,0,.52,2.08,1.73,1.73,0,0,0,1.53.78,2.36,2.36,0,0,0,1.37-.38,2,2,0,0,0,.79-1v-3a2.72,2.72,0,0,0-.74-1.13,2.06,2.06,0,0,0-1.41-.45,1.7,1.7,0,0,0-1.53.82,3.94,3.94,0,0,0-.53,2.14Z"/><path class="cls-1" d="M179.76,78.51a2.44,2.44,0,0,1-1.89-.86,3.15,3.15,0,0,1-.77-2.19v-.37a3.35,3.35,0,0,1,.76-2.27,2.44,2.44,0,0,1,1.93-.89,2.14,2.14,0,0,1,1.68.7,2.7,2.7,0,0,1,.63,1.89V75h-4.69v.45a3,3,0,0,0,.66,2,2.12,2.12,0,0,0,1.69.79,2.9,2.9,0,0,0,1.09-.21,2.4,2.4,0,0,0,.85-.57l.17.25a2.52,2.52,0,0,1-.86.61A3.17,3.17,0,0,1,179.76,78.51Zm0-6.26a2.12,2.12,0,0,0-1.62.68,2.82,2.82,0,0,0-.71,1.73l0,0h4.3V74.5a2.49,2.49,0,0,0-.53-1.62A1.83,1.83,0,0,0,179.79,72.25Z"/><circle class="cls-1" cx="179.48" cy="8.62" r="8.62"/></g></g></svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@@ -0,0 +1,9 @@
.searchPanel {
display: flex;
align-items: center;
padding: 8px;
.btnContainer {
margin-left: 24px;
}
}

11
src/styles/TopBar.scss Normal file
View File

@@ -0,0 +1,11 @@
.topBar {
width: 100%;
display: flex;
justify-content: space-between;
background-color: #ebebeb;
}
.topBarLogo {
height: 2.4rem;
margin: 16px;
}