pleroma-fe/src/components/user_profile/user_profile.scss

65 lines
1 KiB
SCSS
Raw Normal View History

2026-06-10 15:49:29 +03:00
.user-profile {
flex: 2;
.card-wrapper {
border-top-left-radius: var(--roundness);
border-top-right-radius: var(--roundness);
}
.panel-footer {
border-bottom-left-radius: var(--roundness);
border-bottom-right-radius: var(--roundness);
}
// No sticky header on user profile
--currentPanelStack: 0;
.userlist-placeholder {
display: flex;
justify-content: center;
align-items: center;
padding: 2em;
}
.user-info {
margin: 1.2em;
}
2026-06-10 17:19:45 +03:00
&.-admin-view {
2026-06-11 10:28:02 +03:00
.filter {
2026-06-10 17:38:31 +03:00
padding: 1em;
}
2026-06-10 17:19:45 +03:00
.list-item {
padding: 0;
border-bottom: 1px solid var(--border);
.Status{
width: 100%
}
}
2026-06-10 17:38:31 +03:00
.footer {
background: var(--background);
}
2026-06-10 17:19:45 +03:00
}
2026-06-10 15:49:29 +03:00
}
.user-profile-placeholder {
.panel-body {
display: flex;
justify-content: center;
align-items: center;
padding: 7em;
}
.alert {
padding: 0.75em 5em;
border-width: 2px;
.error-message {
color: var(--text);
font-weight: bold;
}
}
}