Skip to content

Commit bdf2909

Browse files
authored
Merge pull request #134 from Rhythmdoshi31/fix/button-alignment
Fix: Proper alignment and size of Add Transaction button
2 parents 75c0f3a + 086fb6b commit bdf2909

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/pages/DashboardPage.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ const DashboardPage = () => {
116116
onClick={handleOpenModal}
117117
className="px-4 py-2 font-semibold bg-blue-600 text-white rounded-lg shadow-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-opacity-75"
118118
>
119-
+ Add Transaction
119+
<span className='text-2xl'>+</span> Add Transaction
120120
</button>
121121
</div>
122122

frontend/src/pages/TransactionsPage.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ const TransactionsPage = () => {
249249
Manage Categories
250250
</button>
251251
<button onClick={() => handleOpenTransactionModal()} className="px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700">
252-
Add Transaction
252+
<span className='text-2xl'>+</span> Add Transaction
253253
</button>
254254
<button
255255
onClick={handleExportCSV}

0 commit comments

Comments
 (0)