mirror of
https://github.com/fleetdm/fleet
synced 2026-05-14 20:48:35 +00:00
relates to #16218 fix the alignment of the icon and text on the premium message component  - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. - [x] Manual QA for all new/changed functionality
27 lines
495 B
SCSS
27 lines
495 B
SCSS
.premium-feature-message-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: $x-small;
|
|
|
|
.premium-feature-message {
|
|
display: flex;
|
|
gap: 4px;
|
|
|
|
p {
|
|
// need to set line-height to normal for the icons and text to be aligned
|
|
line-height: normal;
|
|
margin: 0;
|
|
}
|
|
|
|
.external-link-and-icon {
|
|
display: flex;
|
|
gap: 4px;
|
|
align-items: center;
|
|
|
|
.custom-link {
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
}
|
|
}
|