fleet/frontend/components/Graphic/_styles.scss
2026-03-13 16:47:09 -04:00

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;
}
}
}