<!-- Add the related story/sub-task/bug number, like Resolves #123, or remove if NA --> **Related issue:** Resolves #45285 https://github.com/user-attachments/assets/c9a15135-cd90-40ef-b6a0-4d87ffd2b5f7 # Checklist for submitter If some of the following don't apply, delete the relevant line. - [ ] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/guides/committing-changes.md#changes-files) for more information. Added in backend task. - [x] Input data is properly validated, `SELECT *` is avoided, SQL injection is prevented (using placeholders for values in statements), JS inline code is prevented especially for url redirects, and untrusted data interpolated into shell scripts/commands is validated against shell metacharacters. - [x] Timeouts are implemented and retries are limited to avoid infinite loops - [x] If paths of existing endpoints are modified without backwards compatibility, checked the frontend/CLI for any necessary changes ## Testing - [x] Added/updated automated tests - [x] QA'd all new/changed functionality manually <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added configuration options for managing end-user local account types (Admin, Standard, or None) on macOS devices. * Added new end-user authentication settings section with the ability to lock end-user information when Apple MDM is configured. * **Bug Fixes** * Fixed checkbox state representation to properly reflect disabled values. * **Style** * Adjusted spacing and layout in setup experience components. <!-- review_stack_entry_start --> [](https://app.coderabbit.ai/change-stack/fleetdm/fleet/pull/46195?utm_source=github_walkthrough&utm_medium=github&utm_campaign=change_stack) <!-- review_stack_entry_end --> <!-- end of auto-generated comment: release notes by coderabbit.ai -->
35 lines
530 B
SCSS
35 lines
530 B
SCSS
.section-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
|
|
&__left-header {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: $pad-small;
|
|
|
|
&--vertical {
|
|
flex-direction: column;
|
|
gap: $pad-xsmall;
|
|
}
|
|
}
|
|
|
|
&__sub-title {
|
|
font-size: $x-small;
|
|
font-weight: $regular;
|
|
&--grey {
|
|
@include grey-text;
|
|
}
|
|
}
|
|
|
|
h2 {
|
|
font-size: $small;
|
|
width: 100%;
|
|
}
|
|
|
|
// GOAL: rely on gap instead of these bottom margins
|
|
&__no-margin {
|
|
margin: 0;
|
|
}
|
|
}
|