feat: Cambiar la posición de la barra de navegación a absoluta y ajustar su ancho

This commit is contained in:
Shni
2025-11-05 08:25:39 -06:00
parent 9d343c522f
commit bb70e5e842

View File

@@ -124,12 +124,12 @@ onUnmounted(() => {
<style scoped> <style scoped>
.island-navbar { .island-navbar {
position: fixed; position: absolute;
top: 25px; top: 25px;
left: 38%; left: 50%;
transform: translateX(-50%); transform: translateX(-50%);
z-index: 1000; z-index: 1000;
width: 75%; width: 90%;
max-width: 1200px; max-width: 1200px;
} }