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

30 lines
418 B
SCSS
Raw Normal View History

2022-08-29 18:09:28 +00:00
.userCard {
display: flex;
flex-direction: row;
gap: 1rem;
padding: 0.5rem;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
.pictureWrapper {
overflow: hidden;
}
.userInfo {
display: flex;
flex-direction: column;
h2 {
padding: 0;
margin: 0;
.username {
font-size: 0.875rem;
}
}
}
}
.userList {
display: flex;
flex-direction: column;
gap: 1rem;
}