mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
- Add video asset - Update component rendering it to have unique copy and video for each platform - Fix a [padding issue](https://fleetdm.slack.com/archives/C084F4MKYSJ/p1757600659471109) - Adjust vertical position of tab nav to compensate for library-specific positioning <img width="1505" height="1153" alt="Screenshot 2025-09-11 at 12 01 20 PM" src="https://github.com/user-attachments/assets/c26e8ff5-97fd-4430-ba59-1a86a9756a1c" /> <img width="1505" height="1153" alt="Screenshot 2025-09-11 at 12 01 26 PM" src="https://github.com/user-attachments/assets/cbfb72ae-6b00-4f5d-bda2-5ef6b737a0b0" /> --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
10 lines
249 B
SCSS
10 lines
249 B
SCSS
.setup-experience-content-container {
|
|
max-width: $break-xxl;
|
|
display: grid;
|
|
grid-template-columns: minmax(150px, 450px) minmax(50%, 1fr);
|
|
gap: $pad-xxlarge;
|
|
|
|
@media (max-width: $break-md) {
|
|
grid-template-columns: minmax(0, 1fr);
|
|
}
|
|
}
|