fixed barnavigation

This commit is contained in:
2025-09-19 18:54:47 -06:00
parent ca67be2de3
commit 3063e04867
4 changed files with 12 additions and 9 deletions
@@ -1,5 +1,4 @@
.barNavigation {
position: absolute;
text-align: center;
background-color: rgb(1, 92, 184);
padding: 0 20px;
+10 -6
View File
@@ -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) {
+1 -1
View File
@@ -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 =
+1 -1
View File
@@ -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) {