From a0236d6e4261b521d7102b8f5d290c6ff176dd81 Mon Sep 17 00:00:00 2001 From: Ale Date: Mon, 4 Sep 2023 20:25:14 -0300 Subject: [PATCH] =?UTF-8?q?Cartelito=20incompleto,=20falta=20arreglar=20pa?= =?UTF-8?q?dding=20del=20main=20cuando=20el=20cartel=20est=C3=A1=20activo/?= =?UTF-8?q?inactivo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/js/components/NavCartelAprobado.vue | 33 +++++++++++++++++++ resources/js/components/NavMigas.vue | 8 ----- resources/sass/app.scss | 22 +++++++++++-- resources/views/layouts/app.blade.php | 1 + 4 files changed, 54 insertions(+), 10 deletions(-) create mode 100644 resources/js/components/NavCartelAprobado.vue diff --git a/resources/js/components/NavCartelAprobado.vue b/resources/js/components/NavCartelAprobado.vue new file mode 100644 index 0000000..2b13071 --- /dev/null +++ b/resources/js/components/NavCartelAprobado.vue @@ -0,0 +1,33 @@ + + + + + \ No newline at end of file diff --git a/resources/js/components/NavMigas.vue b/resources/js/components/NavMigas.vue index ea70dc9..45b398d 100644 --- a/resources/js/components/NavMigas.vue +++ b/resources/js/components/NavMigas.vue @@ -43,12 +43,4 @@ \ No newline at end of file diff --git a/resources/sass/app.scss b/resources/sass/app.scss index 1ae79f8..cb6490e 100644 --- a/resources/sass/app.scss +++ b/resources/sass/app.scss @@ -7,8 +7,16 @@ @import 'bulma'; @import '~bulma-switch'; -main.has-top-padding { - padding-top: 4.5rem !important; +@media (min-width: 500px) { + main.has-top-padding { + padding-top: 4.5rem !important; + } +} + +@media (max-width: 500px) { + main.has-top-padding { + padding-top: 8rem !important; + } } table.table td { @@ -25,6 +33,16 @@ table.table td { z-index: 30; } +nav.breadcrumb.is-fixed-top { + position: fixed; + left: 0; + right: 0; + top: 3.25rem; + height: 2.75rem; + z-index: 5; + margin-bottom: 1rem; +} + #main { height: 100%; } diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php index 4302324..3e65751 100644 --- a/resources/views/layouts/app.blade.php +++ b/resources/views/layouts/app.blade.php @@ -29,6 +29,7 @@ +
@yield('content')