22 lines
350 B
SCSS
22 lines
350 B
SCSS
.transactions {
|
|
.column {
|
|
h3 {
|
|
text-align: center;
|
|
text-decoration: underline;
|
|
}
|
|
margin: 2ch;
|
|
background: #fff1;
|
|
padding: 0 2ch 1ch;
|
|
border-radius: 1ch;
|
|
}
|
|
|
|
.transaction-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
.details {
|
|
padding-left: 1ch;
|
|
}
|
|
}
|
|
}
|