mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
relates to #22374 > NOTE: we still need integration with the API which will be done in another PR. >NOTE: Please review https://github.com/fleetdm/fleet/pull/22651 first, as this PR is based off of that branch. This adds the UI for uploading a setup experience script. this includes: **setup experience script uploader:**  **script card:**  **delete script modal:**  **script run preview:**  <!-- Note that API documentation changes are now addressed by the product design team. --> - [x] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. - [ ] Added/updated tests - [x] Manual QA for all new/changed functionality
17 lines
286 B
SCSS
17 lines
286 B
SCSS
.setup-experience-script {
|
|
&__content {
|
|
max-width: $break-xxl;
|
|
margin: 0 auto;
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: $pad-xxlarge;
|
|
}
|
|
|
|
&__description {
|
|
margin: 0;
|
|
}
|
|
|
|
&__learn-how-link {
|
|
margin-bottom: $pad-large;
|
|
}
|
|
}
|