.parent {
display: flex;
position: relative;
flex-direction: row;
align-items: center;
gap: 1rem;
}
.logo {
height: 3rem;
width: 3rem;
object-fit: cover;
border-radius: 50%;
position: relative;
}
.logo::after {
content: '';
width: 10px;
height: 10px;
border-radius: 50px;
background: red;
outline: 2px solid red;
position: absolute;
top: 0;
z-index: 100000;
}
.title {
font-weight: 900;
margin-bottom: -0.3rem;
}
.parent {
display: flex;
position: relative;
flex-direction: row;
align-items: center;
gap: 1rem;
}
.logo {
height: 3rem;
width: 3rem;
object-fit: cover;
border-radius: 50%;
position: relative;
}
.logo::after {
content: '';
width: 10px;
height: 10px;
border-radius: 50px;
background: red;
outline: 2px solid red;
position: absolute;
top: 0;
z-index: 100000;
}
.title {
font-weight: 900;
margin-bottom: -0.3rem;
}