fleet/frontend/components/CustomLink/_styles.scss
Lucas Manuel Rodriguez 52ada033a1
Fix a few UI typos (#30559)
Found one during testing of Entra Conditional Access and then ran
https://github.com/crate-ci/typos to fix a few more.

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **Bug Fixes**
* Corrected various typographical errors in user-facing text, tooltips,
table headers, and messages across the application to improve clarity
and professionalism.
* Fixed spelling mistakes in success and error messages, tooltips, and
descriptive text on multiple pages.
* Updated test setup to use the correct sort type value for CSV
conversion tests.
  * Improved consistency in UI labels and documentation comments.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2025-07-07 08:44:57 -03:00

26 lines
536 B
SCSS

.custom-link {
// Changing display will break multiline links
&:not(.custom-link--multiline) {
display: inline-flex;
align-items: center;
gap: $pad-xsmall;
}
&__no-wrap {
white-space: nowrap;
.icon {
padding-left: 6px;
}
}
// Variants
&--tooltip-link,
&--banner-link,
&--flash-message-link {
color: inherit; // Overrides fleet blue link color with parent color
}
&--tooltip-link {
font-size: inherit; // Overrides link default font size with parent tooltip font size
}
}