mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
relates to #23321, #23322, #23323 This contains three UI fixes: 1. fix when we show the empty state for install software. We were expecting an empty array but the response from `GET /setup_experience/software` sends null when no software has been added  2. fix to add responsive style to install software and run script panels that matches the other setup experience panels.   3. Fix and clean up the copy of the first three setup experience panels to match the new ones. Also, update the alt text on the images to be more descriptive. - [x] Added/updated tests - [x] Manual QA for all new/changed functionality
15 lines
291 B
SCSS
15 lines
291 B
SCSS
.install-software {
|
|
&__content {
|
|
max-width: $break-xxl;
|
|
margin: 0 auto;
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: $pad-xxlarge;
|
|
}
|
|
|
|
@media (max-width: $break-md) {
|
|
&__content {
|
|
grid-template-columns: minmax(0, 1fr);
|
|
}
|
|
}
|
|
}
|