Skip to content

Commit

Permalink
💄 Pulir forma de marco blanco en celucos como dice Julian
Browse files Browse the repository at this point in the history
  • Loading branch information
1cgonza committed Oct 25, 2024
1 parent ab831be commit b4f0d0f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 19 deletions.
36 changes: 18 additions & 18 deletions src/componentes/Menus.astro
Original file line number Diff line number Diff line change
Expand Up @@ -139,16 +139,9 @@ const rutaActual = Astro.url.pathname.slice(1).split('/');
align-items: center;
cursor: pointer;
z-index: 99;
background-color: #fff;
border-radius: 0px 0px 0px 2px;
}

.abierto {
#menuBtn {
background-color: #ffffff00;
}
}

.menuRaya {
width: $menuRayaAnchoCelular;
height: $menuRayaAlto;
Expand Down Expand Up @@ -218,7 +211,20 @@ const rutaActual = Astro.url.pathname.slice(1).split('/');
z-index: 999;

.paginas {
display: none;
display: flex;
width: calc(100% - 80px);
border-bottom: 2px solid black;
height: 40px;
align-items: center;
padding-left: 1em;
background-color: rgba(255, 255, 255, 1);
position: fixed;
top: 0;
left: 40px;

li {
display: none;
}
}
}

Expand Down Expand Up @@ -297,7 +303,6 @@ const rutaActual = Astro.url.pathname.slice(1).split('/');
align-items: center;
cursor: pointer;
z-index: 99;
background-color: #fff;
border-radius: 0px 0px 0px 6px;
}

Expand Down Expand Up @@ -333,17 +338,12 @@ const rutaActual = Astro.url.pathname.slice(1).split('/');
height: 50px;

.paginas {
display: flex;
width: calc(100% - 100px);
border-bottom: 3px solid black;
height: 50px;
align-items: center;
padding-left: 1em;
flex: auto;
background-color: rgba(255, 255, 255, 1);
position: fixed;
top: 0;
width: calc(100% - 100px);
left: 50px;
li {
display: block;
}
}
}

Expand Down
1 change: 0 additions & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ const { general } = await obtenerDatos<{ general: MetadatosGenerales }>(General)
</div>

<div id="contenedorTextoInicio">
<div id="cuadroBlanco"></div>
<div id="lado1" class="lado">
<Logo clase="inicio" />
<div class="titulos">
Expand Down

0 comments on commit b4f0d0f

Please sign in to comment.