Skip to content

Commit

Permalink
cambios de logo
Browse files Browse the repository at this point in the history
  • Loading branch information
xtian7489 committed Jan 18, 2024
1 parent 9383593 commit f8010f9
Show file tree
Hide file tree
Showing 7 changed files with 88 additions and 9 deletions.
51 changes: 51 additions & 0 deletions public/images/logoCompuesto.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions public/images/logoSimple.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: 1 addition & 2 deletions src/app/_components/common/banner-title.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ const BannerTitle = ({ urlAction, title, subtitle, image, linkButton, textButton
style={{ backgroundImage: `url('${image}')` }}>
<div className="is-overlay"></div>
<div className="content">

<Logo color='#2B1B18' />
<img src="/images/logoSimple.svg" alt="" />
<div className="my-3">
<p className=' title has-text-brown-dark is-uppercase has-text-weight-bold mb-3 is-size-1 is-size-3-touch'>{title}</p>
<p className="has-text-weight-light has-text-brown-dark has-text-weight-bold is-size-4 is-size-5-touch">{subtitle}</p>
Expand Down
2 changes: 1 addition & 1 deletion src/app/_components/layout/footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function Footer() {
<footer className='footer-wrapper py-5'>
<div className='logo py-4'>
<Link href="/" >
<Logo />
<img src="/images/logoSimple.svg" alt="" />
</Link>

</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/_components/layout/navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function Navbar() {
<nav className={`navbar-wrapper has-background-primary is-align-items-center ${navbarFixed ? 'navbar is-fixed-top' : ''}`}>
<div className='logo w-25 py-2'>
<Link href="/" className="is-flex is-align-items-center">
<Logo color='#FFFFFF'/>
<img src="/images/logoSimple.svg" alt="" />
</Link>

</div>
Expand Down
4 changes: 2 additions & 2 deletions src/static/scss/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@
position: relative;
z-index: 1;
width: 75%;
svg{
img{
width: 30%;
@include tablet{
filter: brightness(0) saturate(100%) invert(8%) sepia(18%) saturate(1421%) hue-rotate(322deg) brightness(98%) contrast(91%); @include tablet{
width: 60%;
}
}
Expand Down
7 changes: 4 additions & 3 deletions src/static/scss/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
display: flex;
align-items: center;
a{
svg{
img{
width: 250px;
@include tablet{
width: 150px;
Expand Down Expand Up @@ -157,8 +157,9 @@
margin: 0;
}
a{
svg{
img{
width: 250px;
filter: brightness(0) saturate(100%) invert(8%) sepia(18%) saturate(1421%) hue-rotate(322deg) brightness(98%) contrast(91%);
@include tablet{
width: 200px;
}
Expand All @@ -169,7 +170,7 @@

.footer-rrss {
svg {
color: $black;
color: $brown-dark;
height: 32px;
margin: 0 2rem;
}
Expand Down

0 comments on commit f8010f9

Please sign in to comment.