1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-23 07:09:41 +02:00

add print-view component (#407)

Co-authored-by: hay-kot <hay-kot@pm.me>
This commit is contained in:
Hayden 2021-05-14 21:10:03 -08:00 committed by GitHub
parent 35adc341e6
commit 3804e1d52c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 189 additions and 192 deletions

View file

@ -1,5 +1,5 @@
<template>
<div>
<div class="d-print-none no-print">
<v-navigation-drawer v-model="showSidebar" width="180px" clipped app>
<template v-slot:prepend>
<v-list-item two-line v-if="isLoggedIn" to="/admin/profile">
@ -231,4 +231,10 @@ export default {
bottom: 0 !important;
width: 100%;
}
@media print {
.no-print {
display: none;
}
}
</style>