diff --git a/package-lock.json b/package-lock.json index 591dde7..0833bc9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "baslac.ch", + "name": "app", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/public/img/present.jpeg b/public/img/present.jpeg new file mode 100644 index 0000000..e347d15 Binary files /dev/null and b/public/img/present.jpeg differ diff --git a/resources/css/app.css b/resources/css/app.css index 97fd799..dfd4365 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -11,6 +11,34 @@ @layer components { } @layer utilities { + .p-trans-in { + animation: p-anim 2.5s forwards; + } + + @keyframes p-anim { + from { + padding-bottom: 0; + } + + to { + padding-bottom: 70rem; + } + } + + .p-trans-out { + animation: p-anim-out 2.5s forwards; + } + + @keyframes p-anim-out { + to { + padding-bottom: 0; + } + + from { + padding-bottom: 70rem; + } + } + .md-content { font-family: "Roboto"; } diff --git a/resources/js/Layouts/Layout.vue b/resources/js/Layouts/Layout.vue index 21107ab..0643575 100644 --- a/resources/js/Layouts/Layout.vue +++ b/resources/js/Layouts/Layout.vue @@ -17,7 +17,7 @@ const toggleMenu = () => {