34 lines
577 B
CSS
34 lines
577 B
CSS
.amount-green {
|
|
background-color: rgba(72, 172, 152, 0.35);
|
|
padding: 3px 5px;
|
|
font-weight: 500;
|
|
color: rgb(72, 172, 152);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.opposite-sides-content {
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.flex-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.flex-center {
|
|
align-self: center;
|
|
}
|
|
|
|
.flex-col {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.record:hover {
|
|
border-left: rgb(72, 172, 152) solid 4px;
|
|
box-sizing: border-box;
|
|
padding-left: 11px;
|
|
} |