mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +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>
15 lines
380 B
SCSS
15 lines
380 B
SCSS
.graphic {
|
|
// keeps this element the same size as the svg
|
|
// aligns properly in text, buttons, dropdowns, summary tile custom component
|
|
display: inline-flex;
|
|
align-self: center;
|
|
|
|
// Workaround to rescale 40px to 24px
|
|
// For file-sh and file-ps1 graphics used in 24px PolicyAutomations.tsx
|
|
&.scale-40-24 {
|
|
svg {
|
|
height: 24px;
|
|
width: 24px;
|
|
}
|
|
}
|
|
}
|