payment-backoffice/app/features/AdminList/AdminResourceList.scss
2026-01-07 15:41:36 +01:00

110 lines
1.6 KiB
SCSS

.admin-resource-list {
padding: 24px;
width: 100%;
max-width: 900px;
&__header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 16px;
}
&__title {
margin: 0;
}
&__actions {
display: flex;
align-items: center;
gap: 8px;
}
&__loading {
display: flex;
gap: 8px;
align-items: center;
margin-bottom: 16px;
}
&__error {
margin-bottom: 16px;
}
&__empty {
color: rgba(0, 0, 0, 0.6);
}
&__list {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
&__row {
&-content {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 16px;
padding: 16px;
}
&-container {
flex: 1;
min-width: 0;
}
&-header {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 8px;
align-items: center;
}
&-title {
font-weight: 600;
}
&-id {
color: rgba(0, 0, 0, 0.6);
font-size: 0.75rem;
}
&-chips {
display: flex;
gap: 8px;
flex-wrap: wrap;
margin: 8px 0;
}
&-secondary {
color: rgba(0, 0, 0, 0.6);
font-size: 0.875rem;
}
}
&__divider {
height: 1px;
background-color: rgba(0, 0, 0, 0.12);
margin: 0 16px;
}
&__secondary-actions {
display: flex;
align-items: center;
gap: 8px;
flex-shrink: 0;
}
&__enabled-label {
color: rgba(0, 0, 0, 0.6);
font-size: 0.875rem;
}
&__edit-field {
min-width: 200px;
}
}