Adds a Default Roles section with Tag components for viewing/removing roles and an Input+Button for adding new ones. Replaces the plain delete button with a ConfirmDialog requiring typed confirmation. Introduces OidcConfigPage.module.css for CSS module layout classes. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
29 lines
323 B
CSS
29 lines
323 B
CSS
.section {
|
|
display: grid;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.section h3 {
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
margin: 0;
|
|
}
|
|
|
|
.tagRow {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
min-height: 2rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.addRow {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.addRow input {
|
|
flex: 1;
|
|
}
|