25 lines
402 B
CSS
25 lines
402 B
CSS
.member-avatar {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
.badge-creator {
|
|
background-color: #d1f2eb;
|
|
color: #117a65;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.btn-remove-member {
|
|
background: #f8d7da;
|
|
color: #c82333;
|
|
border: none;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.btn-remove-member:hover {
|
|
background: #f5c6cb;
|
|
color: #a71d2a;
|
|
} |