Skip to content

Commit

Permalink
Corrections in lint
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanEstrada003 committed Sep 22, 2024
1 parent e238d98 commit 5f3c83c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
12 changes: 5 additions & 7 deletions src/lib/components/layout/Heading.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,18 @@
.heading-section {
background-image: url("$lib/assets/forms/frame.svg"); /* Asegúrate de colocar la ruta correcta a tu SVG */
background-size: 100%;
align-items: center;
height: 25rem;
display: flex;
align-items: center;
height: 25rem;
display: flex;
}
.heading-container {
color: black; /* Cambia a blanco si lo necesitas */
margin-left: 10%;
}
margin-left: 10%;
}
h1 {
font-size: 3rem;
font-weight: bold;
}
</style>
4 changes: 2 additions & 2 deletions src/lib/components/layout/Navbar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
<nav class="nav-background flex items-center justify-between p-4">
<img src={gecko_code} alt="Logo de Kokoa" width="105.8" height="48.8" style="margin-left:5%" />
<!-- Botón del menú hamburguesa en pantallas pequeñas -->
<button class="hamburger" on:click={toggleMenu}>
<button class="hamburger" onclick={toggleMenu}>
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</button>
<div class="links links relative z-10 flex gap-x-8 text-lg {menuOpen ? 'open' : ''}">
{#each LINKS as { href, text } (href)}
<a {href} class="relative font-fira hover:underline" on:click={closeMenu}>
<a {href} class="relative font-fira hover:underline" onclick={closeMenu}>
<span
aria-hidden="true"
class="absolute -left-3 text-lime-500 {current_path !== href ? 'hidden' : ''}"
Expand Down

0 comments on commit 5f3c83c

Please sign in to comment.