20-Junio-2023

master
Luis Angel Rendon Arrazola 1 year ago
parent 1222d79c43
commit 4575381630
  1. 1
      src/App.tsx
  2. 2
      src/Componentes/AmazonInvoice.tsx
  3. 24
      src/HojasDeEstilo/AmazonInovice.css
  4. 7
      src/HojasDeEstilo/Navbar.css

@ -107,6 +107,7 @@ const App: React.FC = () => {
return ( return (
<div className='App' style={{ backgroundImage: `url(${ImagenFondo})`, backgroundSize: 'cover', backgroundPosition: 'center', backgroundRepeat: 'no-repeat', height: '100vh' }}> <div className='App' style={{ backgroundImage: `url(${ImagenFondo})`, backgroundSize: 'cover', backgroundPosition: 'center', backgroundRepeat: 'no-repeat', height: '100vh' }}>
<title>GemcoLocalHost</title>
<Router> <Router>
{isLoading ? ( {isLoading ? (
<p>Loading...</p> <p>Loading...</p>

@ -76,7 +76,7 @@ import {BsFiletypePdf} from "react-icons/bs"
setSelectedInvoiceId(id); setSelectedInvoiceId(id);
// Update data in memory // Actualizacion en memoria..
setInvoices((prevInvoices) => { setInvoices((prevInvoices) => {
const updatedInvoices = prevInvoices.map((invoice) => { const updatedInvoices = prevInvoices.map((invoice) => {
if (invoice.id === id) { if (invoice.id === id) {

@ -7,19 +7,28 @@
border-collapse: collapse; border-collapse: collapse;
} }
.table th { .table th {
background-color: #95c030; background-color: #95c030;
color: white; color: rgb(7, 10, 0);
text-align: center; text-align: center;
padding: 1px; padding: 1px;
width: 5%; width: 5%;
height: 5%; height: 5%;
font-family: cursive;
} }
.table td { .table td {
text-align: center; text-align: center;
padding: 8px; padding: 8px;
/* font-family:Georgia, 'Times New Roman', Times, serif */
/* font-family: Arial, Helvetica, sans-serif; */
font-family: cursive;
background-color: white;
} }
.pagination-container { .pagination-container {
@ -33,10 +42,12 @@
list-style: none; list-style: none;
padding: 0; padding: 0;
margin: 0; margin: 0;
/* width: 0px;
height: 500px; */
} }
.pagination li { .pagination li {
margin-right: 5px; margin-right: 0px;
} }
.pagination li button { .pagination li button {
@ -46,20 +57,23 @@
background-color: #f5f5f5; background-color: #f5f5f5;
color: #333; color: #333;
cursor: pointer; cursor: pointer;
/* height: 5px; */
width: 77.3px;
} }
.pagination li button:hover { .pagination li button:hover {
background-color: #e9e9e9; background-color: #0e2ade;
} }
.pagination li.active button { .pagination li.active button {
background-color: #95c030; background-color: blue;
color: white; color: white;
} }
h1 { h1 {
color: white color:bisque
} }
.caret-icon { .caret-icon {

@ -1,6 +1,6 @@
.navbar-custom { .navbar-custom {
background-color: #4054bd; background-color: #4054bd;
color: #000; color: #000000;
position: fixed; position: fixed;
top: 0; top: 0;
width: 100%; width: 100%;
@ -16,11 +16,12 @@
.navbar-custom .nav-link { .navbar-custom .nav-link {
color: #f5f5f5; color: #f5f5f5;
font-weight: bold; font-weight:100;
font-size: 18px; font-size: 18px;
margin-right: 15px; margin-right: 15px;
} }
.navbar-custom .nav-link:hover { .navbar-custom .nav-link:hover {
color: #888888; color: green;
} }

Loading…
Cancel
Save