fixed barnavigation
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
.barNavigation {
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
background-color: rgb(1, 92, 184);
|
||||
padding: 0 20px;
|
||||
|
||||
+10
-6
@@ -81,10 +81,10 @@ footer p {
|
||||
|
||||
.mainContainer {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
display: grid;
|
||||
grid-template-rows: 40px 1fr;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
justify-items: center;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
@@ -364,9 +364,9 @@ table tr {
|
||||
}
|
||||
|
||||
.impressions-title {
|
||||
font-size: 1.75rem;
|
||||
font-weight: bold;
|
||||
text-align: start;
|
||||
font-size: 1.75rem;
|
||||
font-weight: bold;
|
||||
text-align: start;
|
||||
}
|
||||
|
||||
@media (max-width: 1300px) {
|
||||
@@ -433,6 +433,10 @@ table tr {
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
footer p {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-height: 960px) {
|
||||
|
||||
@@ -2,7 +2,7 @@ import apiClient from "@/app/lib/apiClient";
|
||||
|
||||
export async function PostImpressions(data: any) {
|
||||
try {
|
||||
const response = await apiClient.post("/operations", data);
|
||||
const response = await apiClient.post("/operations/impressions", data);
|
||||
return response.data;
|
||||
} catch (error: any) {
|
||||
const msg =
|
||||
|
||||
@@ -2,7 +2,7 @@ import apiClient from "./apiClient";
|
||||
|
||||
export async function PostReceipt(data: any) {
|
||||
try {
|
||||
const response = await apiClient.post("/recibo", data);
|
||||
const response = await apiClient.post("/operations/receipt", data);
|
||||
console.log(response.data);
|
||||
return response.data;
|
||||
} catch (error: any) {
|
||||
|
||||
Reference in New Issue
Block a user