diff --git a/package-lock.json b/package-lock.json index 2003379..cea10d5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2455,9 +2455,9 @@ "dev": true }, "bootstrap": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.5.0.tgz", - "integrity": "sha512-Z93QoXvodoVslA+PWNdk23Hze4RBYIkpb5h8I2HY2Tu2h7A0LpAgLcyrhrSUyo2/Oxm2l1fRZPs1e5hnxnliXA==" + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.5.2.tgz", + "integrity": "sha512-vlGn0bcySYl/iV+BGA544JkkZP5LB3jsmkeKLFQakCOwCM3AOk7VkldBz4jrzSe+Z0Ezn99NVXa1o45cQY4R6A==" }, "bootstrap-vue": { "version": "2.15.0", diff --git a/package.json b/package.json index e542772..a422edf 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "axios": "^0.19.2", - "bootstrap": "^4.5.0", + "bootstrap": "^4.5.2", "bootstrap-vue": "^2.15.0", "core-js": "^3.6.5", "sweetalert": "^2.1.2", diff --git a/src/App.vue b/src/App.vue index 0332088..23a47f6 100644 --- a/src/App.vue +++ b/src/App.vue @@ -11,6 +11,7 @@ import Vue from "vue"; import { BootstrapVue, IconsPlugin } from "bootstrap-vue"; Vue.use(BootstrapVue); + Vue.use(IconsPlugin); export default { diff --git a/src/components/panelAdmin.vue b/src/components/panelAdmin.vue index a3dd1d3..c3c8296 100644 --- a/src/components/panelAdmin.vue +++ b/src/components/panelAdmin.vue @@ -5,34 +5,50 @@

Hackaton UNAM-AWS

+ + + + +
@@ -120,6 +136,11 @@ export default { }; }, methods: { + toggle: function() { + let element = document.getElementById('navbarNav') + element.classList.toggle('block') + element.classList.add('mystyle') + }, }, async created() { @@ -217,5 +238,65 @@ td { .navbar-brand{ color: white; +} + +body{ + overflow-x: hidden; +} +.mystyle { + text-align: left; +} + +.block { + display: block; +} +a { + max-height: 100%; +} +.menu { + background-color: #bb8800; +} + +.menu nav ul { + display: flex; + justify-content: space-between; + margin: 0 1rem; +} + +.menu nav ul div { + display: flex; + justify-content: space-between; +} + +.menu nav ul li { + list-style: none; +} + +.menu nav ul li a { + display: block; +} + + + + +.van{ + display:flex; + align-items: center; + justify-content: center; + color: black; + +} + + + + + +@media (min-width: 768px) { +.van{ + display: none; +} + + + }