icynet-auth-server/src/fe/scss/_logins.scss

51 lines
714 B
SCSS

.login {
display: flex;
flex-direction: column;
position: relative;
gap: 0.25rem;
padding: 8px;
&__list {
display: flex;
flex-direction: column;
gap: 1rem;
}
&__title {
display: flex;
flex-direction: row;
justify-content: space-between;
}
&__current {
font-weight: bold;
}
&__indicator {
position: absolute;
left: -16px;
width: 16px;
height: 16px;
border-radius: 100%;
&--current {
background-color: rgb(0, 190, 63);
}
&--other {
background-color: rgb(0, 136, 255);
}
}
&__using {
display: flex;
flex-direction: row;
flex-wrap: wrap;
font-size: 0.875rem;
}
p {
margin: 0;
}
}