webapp/src/components/_shared/InviteMembers/InviteMembers.module.scss
Ilya Y 4e931a39c5
Feature/all authors order (#410)
Load Authors by btn click
---------

Co-authored-by: Untone <anton.rewin@gmail.com>
2024-02-22 10:29:52 +03:00

69 lines
1016 B
SCSS

.InviteMembers {
.searchHeader {
display: flex;
flex-flow: row nowrap;
width: 100%;
gap: 1rem;
}
.field {
border-bottom: 2px solid var(--background-color-invert);
display: flex;
flex-flow: row nowrap;
padding: 4px 0;
align-items: center;
width: 100%;
}
.input {
@include font-size(1.5rem);
border: none;
padding: 0;
margin: 0;
flex: 1;
&::placeholder {
color: #404040;
}
&:focus {
outline: none;
}
}
.searchButton {
margin: 0;
}
.authors {
height: 300px;
overflow: auto;
margin-top: 1rem;
.author {
cursor: pointer;
&:hover {
background: var(--black-100);
}
}
}
.teaser {
min-height: 300px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.actions {
display: flex;
margin-top: 1rem;
flex-direction: row;
justify-content: space-between;
}
}