icynet-admin/components/UsersPage/UsersPage.module.scss

68 lines
986 B
SCSS
Raw Normal View History

2022-08-29 18:09:28 +00:00
.userCard {
display: flex;
flex-direction: row;
2022-08-30 18:21:57 +00:00
border-radius: 8px;
2022-08-29 18:09:28 +00:00
gap: 1rem;
padding: 0.5rem;
2022-09-12 19:31:58 +00:00
box-shadow: 0 0 8px var(--box-shadow-color);
2022-08-30 18:21:57 +00:00
2022-09-01 18:11:36 +00:00
.titleWrap {
display: flex;
justify-content: space-between;
}
2022-08-29 18:09:28 +00:00
.pictureWrapper {
overflow: hidden;
}
.userInfo {
display: flex;
flex-direction: column;
2022-09-01 18:11:36 +00:00
flex-grow: 1;
2022-08-29 18:09:28 +00:00
h2 {
padding: 0;
margin: 0;
.username {
font-size: 0.875rem;
}
}
}
}
.userList {
display: flex;
flex-direction: column;
gap: 1rem;
}
2022-09-01 18:11:36 +00:00
.privEditor {
display: flex;
flex-direction: column;
.privInner {
display: flex;
.described {
display: flex;
flex-direction: column;
flex-grow: 1;
h4 {
margin-bottom: 0.5rem;
}
select {
min-height: 120px;
}
}
.privControls {
display: flex;
flex-direction: column;
justify-content: center;
margin: 0 0.5rem;
gap: 0.25rem;
}
}
}