Skip to content

Commit

Permalink
EOD push
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriKOBASSIAN committed May 30, 2024
1 parent 4db698a commit 37b13d0
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 24 deletions.
6 changes: 3 additions & 3 deletions src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import '../styles/Footer.scss';

function Footer() {
return (
<div className='Footer'>
<img src={LogoBW} alt='Kasa' className='kasa-logo-bw' />
<div className='footer'>
<img src={LogoBW} className='footer--logo' alt='Kasa Logo'/>
<div className='disclaimer'>
<p className='kasa-footer'>© 2024 Kasa. All rights reserved</p>
<p className='footer--text'>© 2024 Kasa. All rights reserved</p>
</div>
</div>
);
Expand Down
5 changes: 3 additions & 2 deletions src/styles/Error.scss
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
$kasa-pink: #FF6060;
$kasa-font: 'Montserrat', sans-serif;

h1 {
color: $kasa-pink;
font-size: 12em;
text-align: center;
font-weight: 600;
font-family: 'Montserrat', sans-serif;
font-family: $kasa-font
}

p {
color: $kasa-pink;
font-size: 2em;
text-align: center;
font-weight: 500;
font-family: 'Montserrat', sans-serif;
font-family: $kasa-font
}
41 changes: 22 additions & 19 deletions src/styles/Footer.scss
Original file line number Diff line number Diff line change
@@ -1,28 +1,31 @@
$kasa-black: #000000;
$kasa-white: #FFFFFF;

.Footer {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 210px;
.footer {
width: 100%;
height: 209px;
background-color: $kasa-black;
font-size: 14px;
color: #495057;
text-align: center;
position: fixed;
color: $kasa-white;
position: absolute;
bottom: 0;
padding-top: 20px;
}

.kasa-logo-bw {
margin-top: 20px;
left: 0;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
font-size: 14px;
}
flex-direction: column;
gap: 30px;
padding: 66px 0;

.kasa-footer {
color: white;
&--logo {
margin-top: 20px;
width: 122px;
height: 40px;
}

&--text {
font-size: 24px;
font-weight: 500;
color: $kasa-white;
}
}

0 comments on commit 37b13d0

Please sign in to comment.