This repository has been archived on 2024-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
icynet-admin/components/UsersPage/UsersPage.module.scss
2022-08-30 21:21:57 +03:00

32 lines
441 B
SCSS

.userCard {
display: flex;
flex-direction: row;
border-radius: 8px;
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;
}