mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Implements patch policies #31914 - https://github.com/fleetdm/fleet/pull/40816 - https://github.com/fleetdm/fleet/pull/41248 - https://github.com/fleetdm/fleet/pull/41276 - https://github.com/fleetdm/fleet/pull/40948 - https://github.com/fleetdm/fleet/pull/40837 - https://github.com/fleetdm/fleet/pull/40956 - https://github.com/fleetdm/fleet/pull/41168 - https://github.com/fleetdm/fleet/pull/41171 - https://github.com/fleetdm/fleet/pull/40691 - https://github.com/fleetdm/fleet/pull/41524 - https://github.com/fleetdm/fleet/pull/41674 --------- Co-authored-by: Jonathan Katz <44128041+jkatz01@users.noreply.github.com> Co-authored-by: jkatz01 <yehonatankatz@gmail.com> Co-authored-by: RachelElysia <71795832+RachelElysia@users.noreply.github.com> Co-authored-by: Jahziel Villasana-Espinoza <jahziel@fleetdm.com>
34 lines
569 B
SCSS
34 lines
569 B
SCSS
.fleet-maintained-app-details-page {
|
|
@include vertical-page-layout;
|
|
|
|
&__back-to-add-software {
|
|
align-self: start;
|
|
}
|
|
|
|
&__page-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $pad-large;
|
|
}
|
|
|
|
&__fleet-app-summary {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
&__fleet-app-summary--left {
|
|
display: flex;
|
|
gap: $pad-medium;
|
|
}
|
|
|
|
&__fleet-app-summary--title {
|
|
font-weight: $bold;
|
|
font-size: $small;
|
|
}
|
|
|
|
&__fleet-app-summary--info {
|
|
font-size: $x-small;
|
|
display: flex;
|
|
gap: $pad-xsmall;
|
|
}
|
|
}
|