Skip to content

Commit

Permalink
🦵🏼pata de logos institucionales
Browse files Browse the repository at this point in the history
  • Loading branch information
Juliansintilde committed Mar 1, 2024
1 parent 085352e commit c3714df
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
45 changes: 45 additions & 0 deletions src/componentes/PataLogos.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
---

<div id="pataLogos">
<div id="logosInstitucionales">
<a href="" target="_blank"
><img src={`${import.meta.env.BASE_URL}/imgs/logos_uniandes.svg`} alt="Logos institucionales" /></a
>
</div>
</div>

<style lang="scss">
@import '@/scss/constantes';

#pataLogos {
display: flex;
position: fixed;
bottom: calc(var(--altoLineaTiempo) + 2vh);
right: 2.5vh;
z-index: 2;

#logosInstitucionales {
display: block;
width: 90vw;
}
}

@media screen and (min-width: $corte1) {
#pataLogos {
#logosInstitucionales {
width: 50vw;
}
}
}

@media screen and (min-width: $corte3) {
#pataLogos {
#logosInstitucionales {
width: 20vw;
max-height: 70px;
}
}
}
</style>
2 changes: 2 additions & 0 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ import Cabezote from '@/componentes/Cabezote.astro';
import Creditos from '@/componentes/Creditos.astro';
import Listas from '@/componentes/Listas.astro';
import Proyectos from '@/componentes/Proyectos.astro';
import PataLogos from '@/componentes/PataLogos.astro';
import { datosListas } from '@/utilidades/cerebro';
---

<Plantilla>
<Cabezote />
<main>
<Creditos />
<PataLogos />
<Ficha />
<Listas />
<Proyectos />
Expand Down

0 comments on commit c3714df

Please sign in to comment.