From af954c73b9ca3c1147a46468f039816f630744b1 Mon Sep 17 00:00:00 2001 From: Romulus21 Date: Tue, 21 Apr 2020 19:22:17 +0200 Subject: [PATCH 1/2] change logo --- public/img/logo.svg | 40 +++++++++++++++++++++++----------------- 1 file changed, 23 insertions(+), 17 deletions(-) diff --git a/public/img/logo.svg b/public/img/logo.svg index 0dbdf48..7375c23 100644 --- a/public/img/logo.svg +++ b/public/img/logo.svg @@ -7,25 +7,27 @@ xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - viewBox="0 0 24 24" - class="fill-current" + width="100mm" + height="100mm" + viewBox="0 0 100 100" version="1.1" - id="svg6" - sodipodi:docname="logo.svg" + id="svg4659" + sodipodi:docname="portal-logo.svg" inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> + id="metadata4665"> image/svg+xml + + id="defs4663" /> - Portal - + inkscape:current-layer="svg4659" /> + + + From 659ef1c9442aa90c55b2286757e89ef5989eb7ae Mon Sep 17 00:00:00 2001 From: Romulus21 Date: Sat, 25 Apr 2020 16:02:42 +0200 Subject: [PATCH 2/2] fix modal --- resources/js/views/Memo/MemoShow.vue | 17 +++++++------- resources/sass/components/modal.scss | 33 ++++++++++++++-------------- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/resources/js/views/Memo/MemoShow.vue b/resources/js/views/Memo/MemoShow.vue index 36cde34..acfce01 100755 --- a/resources/js/views/Memo/MemoShow.vue +++ b/resources/js/views/Memo/MemoShow.vue @@ -2,6 +2,14 @@
+ +
< Back -
Edit Delete diff --git a/resources/sass/components/modal.scss b/resources/sass/components/modal.scss index b32ff51..a0b0e2e 100644 --- a/resources/sass/components/modal.scss +++ b/resources/sass/components/modal.scss @@ -2,25 +2,26 @@ $modal-duration: 1s; .modal-container { background-color: rgba(0,0,0,0.6); - //display: none; position: fixed; + z-index: 10; top: 0; bottom: 0; left: 0; right: 0; - - .modal { - background-color: #fff; - border-radius: 5px; - box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); - position: absolute; - overflow: hidden; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - max-width: 100%; - width: 400px; - animation-name: modalopen; - animation-duration: $modal-duration; - } +} + +.modal { + background-color: #fff; + border-radius: 5px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); + position: absolute; + z-index: 20; + overflow: hidden; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + max-width: 100%; + width: 400px; + animation-name: modalopen; + animation-duration: $modal-duration; }