add vat to tax calculations

This commit is contained in:
2025-11-17 00:28:44 +03:00
parent 8263be3ae3
commit c9a7cc1b0e
3 changed files with 27 additions and 10 deletions

View File

@@ -477,7 +477,7 @@
.openingHours {
position: absolute;
top: 190px;
right: 10px;
right: 16px;
font-size: 14px;
font-weight: 600;
color: #666;
@@ -706,3 +706,10 @@
left: 10px;
right: auto;
}
.timeIcon {
position: relative;
top: 4px;
margin: 0 4px;
}

View File

@@ -29,6 +29,7 @@ import MenuSkeleton from "./components/MenuSkeleton/MenuSkeleton";
import ScrollEventHandler from "./components/ScrollEventHandler";
import SearchButton from "./components/SearchButton";
import styles from "./menu.module.css";
import TimeIcon from "components/Icons/order/TimeIcon";
function MenuPage() {
const { subdomain } = useParams();
@@ -128,10 +129,8 @@ function MenuPage() {
</div>
<ProText className={styles.openingHours}>
{t("menu.openingHours", {
openingTime: restaurant?.openingTime,
closingTime: restaurant?.closingTime,
})}
<TimeIcon className={styles.timeIcon} />
{restaurant?.openingTime} - {restaurant?.closingTime}
</ProText>
</div>
</div>