fleet/frontend/components/TableContainer/DataTable/InternalLinkCell/_styles.scss
Gabriel Hernandez 30553cecc3
fix icon misalignments on dashboard cards (#19610)
relates to #19555

This fixes various icon misalignments on the dashboard page.

**before:**


![image](https://github.com/fleetdm/fleet/assets/1153709/0738c8a3-88c7-481b-8675-fdeb5713de78)

**after:**


![image](https://github.com/fleetdm/fleet/assets/1153709/25bc995a-644e-4310-b32d-09d39f28960c)

- [x] Changes file added for user-visible changes in `changes/`,
`orbit/changes/` or `ee/fleetd-chrome/changes`.
See [Changes
files](https://fleetdm.com/docs/contributing/committing-changes#changes-files)
for more information.
- [x] Manual QA for all new/changed functionality
2024-06-11 12:55:25 +01:00

15 lines
244 B
SCSS

.internal-link-cell {
&__content {
font: $x-small;
color: $core-vibrant-blue;
font-weight: $bold;
display: inline-flex;
gap: $pad-small;
&:hover {
cursor: pointer;
text-decoration: underline;
}
}
}