add vat to tax calculations
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user