Skip to content

Commit 8bf45f4

Browse files
authored
V3.0.1
V3.0.1
2 parents 905f412 + a4a76ec commit 8bf45f4

File tree

4 files changed

+30
-18
lines changed

4 files changed

+30
-18
lines changed

index.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,14 @@
88
<body>
99
<div id="root"></div>
1010
<script type="module" src="/src/main.jsx"></script>
11+
<!-- Google tag (gtag.js) -->
12+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-L9RW3X29KB"></script>
13+
<script>
14+
window.dataLayer = window.dataLayer || [];
15+
function gtag(){dataLayer.push(arguments);}
16+
gtag('js', new Date());
17+
18+
gtag('config', 'G-L9RW3X29KB');
19+
</script>
1120
</body>
1221
</html>

src/App.css

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -900,9 +900,12 @@ main {
900900
}
901901

902902
.recurring-transaction-manager .table th {
903-
background-color: var(--bs-light) !important;
903+
background-color: var(--primary-color) !important;
904+
color: white !important;
904905
border-bottom: 2px solid var(--bs-border-color) !important;
905-
font-weight: 600 !important;
906+
font-weight: bold;
907+
font-size: 0.875rem;
908+
906909
}
907910

908911
[data-bs-theme="dark"] .recurring-transaction-manager .table th {

src/components/RecurringTransactionManager.jsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -264,16 +264,16 @@ const RecurringTransactionManager = ({
264264

265265
{/* Recurring Transactions Table */}
266266
<div className="table-responsive">
267-
<table className="table table-striped">
268-
<thead>
267+
<table className="table table-striped table-sm">
268+
<thead style={{ background: '#2563eb' }}>
269269
<tr>
270-
<th>Name</th>
271-
<th>Type</th>
272-
<th>Category</th>
273-
<th>Amount</th>
274-
<th>Frequency</th>
275-
<th>Status</th>
276-
<th>Actions</th>
270+
<th className="text-center align-middle text-white">Name</th>
271+
<th className="text-center align-middle text-white">Type</th>
272+
<th className="text-center align-middle text-white">Category</th>
273+
<th className="text-center align-middle text-white">Amount</th>
274+
<th className="text-center align-middle text-white">Frequency</th>
275+
<th className="text-center align-middle text-white">Status</th>
276+
<th className="text-center align-middle text-white" width="100">Actions</th>
277277
</tr>
278278
</thead>
279279
<tbody>

src/components/TransactionManager.jsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -390,14 +390,14 @@ const TransactionManager = ({
390390
{/* Transactions Table */}
391391
<div className="table-responsive">
392392
<table className="table table-striped table-sm">
393-
<thead>
393+
<thead style={{ background: '#2563eb' }}>
394394
<tr>
395-
<th>Date</th>
396-
<th>Type</th>
397-
<th>Category</th>
398-
<th>Amount</th>
399-
<th>Description</th>
400-
<th width="100">Actions</th>
395+
<th className="text-center align-middle text-white">Date</th>
396+
<th className="text-center align-middle text-white">Type</th>
397+
<th className="text-center align-middle text-white">Category</th>
398+
<th className="text-center align-middle text-white">Amount</th>
399+
<th className="text-center align-middle text-white">Description</th>
400+
<th className="text-center align-middle text-white" width="100">Actions</th>
401401
</tr>
402402
</thead>
403403
<tbody>

0 commit comments

Comments
 (0)