thenavisapp
Version:
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
44 lines (37 loc) • 699 B
CSS
/* TransactionHistory.css */
.transaction-history-container {
max-width: 600px;
margin: auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.transaction-history-container h2 {
text-align: center;
color: #3496d8;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 20px;
padding: 20px;
background-color: #f9f9f9;
border-radius: 8px;
display: flex;
justify-content: space-between;
}
.transaction-info,
.transaction-status {
flex: 1;
}
.transaction-info p,
.transaction-status p {
margin: 5px 0;
}
span {
font-weight: bold;
margin-right: 5px;
}