1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-02-24 11:13:02 +01:00

Add a footer to the application

This commit is contained in:
Kovah 2019-04-24 21:43:30 +02:00
parent d2ab6cebda
commit b6ee22f066
No known key found for this signature in database
GPG Key ID: AAAA031BA9830D7B
4 changed files with 12 additions and 0 deletions

View File

@ -8,6 +8,11 @@ body:not(.bookmarklet) {
padding-bottom: ($spacer * 2);
}
.footer {
padding-top: ($spacer * 2);
opacity: .5;
}
@media (max-width: 991px) {
.container {
width: 100%;

View File

@ -13,6 +13,8 @@
@yield('content')
</main>
@include('partials.footer')
<script src="{{ asset('assets/dist/js/dependencies.js') }}"></script>
@stack('scripts')

View File

@ -13,6 +13,8 @@
@yield('content')
</main>
@include('partials.footer')
<script src="{{ asset('assets/dist/js/dependencies.js') }}"></script>
@stack('scripts')

View File

@ -0,0 +1,3 @@
<aside class="footer container text-center small">
Linkace is a project by <a href="https://kovah.de/">Kovah.de</a>
</aside>