Compare commits

..

2 Commits

Author SHA1 Message Date
VITALY-VORON
609f5bba92 Merge branch 'main' of https://git.zetcraft.ru/FichaHackaton/FichaFrontend
All checks were successful
Create and publish a Docker image / Publish image (push) Successful in 49s
Create and publish a Docker image / Deploy image (push) Successful in 4s
2023-08-26 12:41:45 +03:00
VITALY-VORON
fcd9c62042 icon fix 2023-08-26 12:37:12 +03:00
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 ( return (
<div style={{ <div style={{
height: 257, height: 257,
width: 390, width: '100%',
display: 'flex', display: 'flex',
justifyContent: 'center', justifyContent: 'center',
alignItems: 'center', alignItems: 'center',

View File

@ -1,39 +1,48 @@
const Header = () => { const Header = () => {
return ( return (
<div style={{ <div style={{
height: '100%',
width: '100%',
display: 'flex', display: 'flex',
alignItems: 'center', alignItems: 'center',
justifyContent: 'space-between', justifyContent: 'center',
paddingLeft: '10px',
height: 79,
width: 390,
backgroundColor: '#ffffff',
}}> }}>
<div style={{ <div style={{
display: 'flex', display: 'flex',
alignItems: 'center', alignItems: 'center',
justifyContent: 'space-between',
paddingLeft: '10px',
height: 79,
width: 390,
backgroundColor: '#ffffff',
}}> }}>
<img src="./logo5121.png" alt="#" style={{ <div style={{
height: 53, display: 'flex',
width: 53, alignItems: 'center',
}}/> }}>
<span style={{ <img src="./logo5121.png" alt="#" style={{
color: '#F68C43', height: 53,
width: '60%', width: 53,
display: 'flex', }}/>
flexDirection: 'column', <span style={{
alignItems: 'start', color: '#F68C43',
fontWeight: 700, width: '60%',
fontFamily: 'Raleway', display: 'flex',
fontSize: '20px', flexDirection: 'column',
}}>Путешествия <p style={{color: '#4EB0F2'}} >Просто!</p></span> alignItems: 'start',
fontWeight: 700,
fontFamily: 'Raleway',
fontSize: '20px',
}}>Путешествия <p style={{color: '#4EB0F2'}} >Просто!</p></span>
</div>
<img src="./menu.png" alt="#" style={{
height: 20,
width: 32,
marginRight: 10
}}/>
</div> </div>
<img src="./menu.png" alt="#" style={{
height: 20,
width: 32,
marginRight: 10
}}/>
</div> </div>
); );
} }