WGShare.Client.Electron/src/components/SingIn/index.module.scss

32 lines
573 B
SCSS

.singInModal {
max-height: 80vh;
.singInModalContent {
flex-grow: 1;
overflow-y: auto;
margin: 10px 0;
>div {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px #363636 solid;
padding-bottom: 10px;
>span {
flex-grow: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 16px;
color: white;
}
}
}
.singInModalFooter {
flex-shrink: 0;
display: flex;
justify-content: center;
}
}