You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.1 KiB
70 lines
1.1 KiB
.transaction-activity-log {
|
|
&__card {
|
|
background: $white;
|
|
height: 100%;
|
|
}
|
|
|
|
&__activities-container {
|
|
padding-top: 8px;
|
|
}
|
|
|
|
&__activity {
|
|
padding: 4px 0;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
position: relative;
|
|
|
|
&::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
height: 100%;
|
|
width: 6px;
|
|
border-right: 1px solid $scorpion;
|
|
}
|
|
|
|
&:first-child::after {
|
|
height: 50%;
|
|
top: 50%;
|
|
}
|
|
|
|
&:last-child::after {
|
|
height: 50%;
|
|
}
|
|
|
|
&:first-child:last-child::after {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&__activity-icon {
|
|
width: 13px;
|
|
height: 13px;
|
|
margin-right: 6px;
|
|
border-radius: 50%;
|
|
background: $scorpion;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
&__activity-text {
|
|
color: $scorpion;
|
|
font-size: .75rem;
|
|
|
|
@media screen and (min-width: $break-large) {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
&__value {
|
|
display: inline;
|
|
font-weight: 500;
|
|
}
|
|
|
|
b {
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
|