mirror of
https://github.com/fleetdm/fleet
synced 2026-05-16 05:28:38 +00:00
<!-- Add the related story/sub-task/bug number, like Resolves #123, or remove if NA --> **Related issue:** Resolves #34133 # Checklist for submitter If some of the following don't apply, delete the relevant line. ## Testing - [X] QA'd all new/changed functionality manually Before: <img width="420" height="46" alt="image" src="https://github.com/user-attachments/assets/e6117197-c966-42be-8fb6-e3a6e18e203e" /> After: <img width="420" height="50" alt="image" src="https://github.com/user-attachments/assets/880a6c0b-932b-4bf8-8ff8-33f1d1b0c8f7" />
29 lines
534 B
SCSS
29 lines
534 B
SCSS
.premium-feature-message-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: $x-small;
|
|
|
|
&__align-left {
|
|
justify-content: left;
|
|
align-items: left;
|
|
}
|
|
|
|
.premium-feature-message {
|
|
display: flex;
|
|
gap: 4px;
|
|
align-items: center;
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|