mirror of
https://github.com/fleetdm/fleet
synced 2026-04-30 18:07:56 +00:00
relates to #18677 implement UI API integrations and polish tasks for the software install feature. These include various tasks to finish up this feature on the UI and ensure its working correctly - [x] Manual QA for all new/changed functionality
22 lines
679 B
SCSS
22 lines
679 B
SCSS
.software-name-cell {
|
|
// TODO: we do not want to use !important but have to for now. We need to pull
|
|
// the .link-cell styles into the LinkCell component in order to
|
|
// decrease the specificity of the styles. This will allow us to remove the
|
|
// !important from here.
|
|
display: flex !important;
|
|
align-items: center;
|
|
gap: $pad-small;
|
|
|
|
.software-icon {
|
|
width: 24px;
|
|
height: 24px;
|
|
border: 1px solid $ui-fleet-black-10;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
&__install-icon {
|
|
// TODO: we do not want to use !important but have to for now. This is
|
|
// the same issue as the .software-name-cell class display value.
|
|
display: inline-flex !important;
|
|
}
|
|
}
|