Skip to content

Commit

Permalink
Mostrar listas ordenadas y cantidades
Browse files Browse the repository at this point in the history
  • Loading branch information
anattolia committed Aug 2, 2024
1 parent ed64e70 commit 02ddcac
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
3 changes: 3 additions & 0 deletions aplicaciones/www/src/componentes/ListaNodos.astro
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ const { lista, id } = Astro.props;
}
</ul>
</section>

<style lang="'scss">
</style>
Empty file.
51 changes: 51 additions & 0 deletions aplicaciones/www/src/scss/estilos.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,54 @@
:root {
--colorFuente: #252424;
}

// Nodos listas
.contenedorElementos {
height: 100vh;
// opacity: 0;
// overflow: hidden;
transition: opacity 0.35s ease-in-out;

&.abierto {
height: 100%;
opacity: 1;
}

li {
cursor: pointer;

&:hover {
background-color: white;
}
}

.titulo {
cursor: pointer;
}

.nombre {
margin: 0;
font-size: 0.85em;
}

.barra {
display: flex;
align-items: center;

.linea {
height: 0.25rem;
background-color: salmon;
}

.conteo {
margin-left: 3px;
}
}
}

#contenedorListas {
.lista {
max-height: 50vh;
overflow: auto;
}
}

0 comments on commit 02ddcac

Please sign in to comment.