Only fixed current day in meal plan

This commit is contained in:
Khuslen Misheel 2023-12-10 13:44:01 -05:00
parent 65513a8f60
commit 31c6defc93
3 changed files with 1 additions and 10 deletions

View File

@ -86,12 +86,10 @@
</a>
{% endif %}
{% endif %}
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText"
aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</button>
{% if request.user.userpreference.left_handed %}
{% if not request.user.is_authenticated or request.user.userpreference.theme == request.user.userpreference.TANDOOR %}

View File

@ -1,6 +1,5 @@
<template>
<div>
<link rel="stylesheet" type="text/css" href="print.css" media="print">
<div class="dropdown d-print-none">
<a class="btn shadow-none pr-0 pl-0" href="javascript:void(0);" role="button" id="dropdownMenuLink"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">

View File

@ -1,6 +0,0 @@
@media print {
body {
color: black; /* Set text color to black */
background: white; /* Set background color to white */
}
}