34 lines
550 B
CSS
34 lines
550 B
CSS
.friend {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
background: #FFFFFF0D;
|
|
border-radius: 1rem;
|
|
padding: 1rem;
|
|
height: 74px;
|
|
}
|
|
|
|
.friendContent {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.friendData {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.friendReferrals {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 3px;
|
|
}
|
|
|
|
.friendBalance span {
|
|
font-family: var(--font-manrope);
|
|
font-weight: 600;
|
|
font-size: 18px;
|
|
line-height: 24px;
|
|
color: white;
|
|
} |