This commit is contained in:
VITALY-VORON 2023-08-26 12:37:12 +03:00
parent 60416a13af
commit fcd9c62042
4 changed files with 34 additions and 25 deletions

BIN
public/logo5121.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

BIN
public/menu.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 B

View File

@ -4,7 +4,7 @@ const Card = ({city}) => {
return (
<div style={{
height: 257,
width: 390,
width: '100%',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',

View File

@ -1,5 +1,12 @@
const Header = () => {
return (
<div style={{
height: '100%',
width: '100%',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
}}>
<div style={{
display: 'flex',
alignItems: 'center',
@ -34,6 +41,8 @@ const Header = () => {
marginRight: 10
}}/>
</div>
</div>
);
}