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

55 lines
793 B
SCSS
Raw Normal View History

2022-08-30 18:08:54 +00:00
.clientCard {
display: flex;
flex-direction: row;
2022-08-30 18:21:57 +00:00
border-radius: 8px;
2022-08-30 18:08:54 +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
.titleWrap {
display: flex;
justify-content: space-between;
}
2022-08-30 18:08:54 +00:00
.pictureWrapper {
overflow: hidden;
}
.clientInfo {
display: flex;
flex-direction: column;
flex-grow: 1;
2022-08-30 18:08:54 +00:00
h2 {
padding: 0;
margin: 0;
.clientname {
font-size: 0.875rem;
}
}
2022-09-01 14:23:11 +00:00
.urls {
display: flex;
flex-direction: column;
align-items: flex-start;
}
}
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.5rem;
h1 {
margin-bottom: 0;
2022-08-30 18:08:54 +00:00
}
}
.clientList {
display: flex;
flex-direction: column;
gap: 1rem;
}