diff --git a/public/window.svg b/public/window.svg new file mode 100644 index 0000000..b2b2a44 --- /dev/null +++ b/public/window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/styles/base/_globales.scss b/src/app/styles/base/_globales.scss index 7461881..c07d2b5 100644 --- a/src/app/styles/base/_globales.scss +++ b/src/app/styles/base/_globales.scss @@ -22,9 +22,7 @@ body { min-height: 100dvh; width: 100vw; - &.overflow-hidden { - overflow: hidden; - } + } p { diff --git a/src/app/styles/layout/BarNavigation.scss b/src/app/styles/layout/BarNavigation.scss index 9afbbb3..b84e042 100644 --- a/src/app/styles/layout/BarNavigation.scss +++ b/src/app/styles/layout/BarNavigation.scss @@ -19,7 +19,7 @@ transition: all 0.3s ease; cursor: pointer; color: white; - width: 100%; + width: auto; transition: background-color 0.3s ease; font-size: 1.5rem; } @@ -62,8 +62,9 @@ max-height: 0; position: absolute; flex-direction: column; - top: 100%; - width: 100%; + min-width: 200px; + max-width: 300px; /* Ajusta según tu diseño */ + left: 0; background-color: #003e79; transition: color 0.3s ease; transition: opacity 0.4s ease, max-height 0.4s ease; @@ -133,7 +134,7 @@ tbody { transition: transform 0.3s ease; } .barNavigation { - width: 100vw; + width: 100%; } .menuToggle.center { diff --git a/src/components/BarNavigation.tsx b/src/components/BarNavigation.tsx index 7526030..933f89a 100644 --- a/src/components/BarNavigation.tsx +++ b/src/components/BarNavigation.tsx @@ -16,22 +16,23 @@ function BarNavigation() { return ( @@ -39,4 +40,3 @@ function BarNavigation() { } export default BarNavigation; -//IO