mirror of
https://github.com/fleetdm/fleet
synced 2026-05-15 04:58:25 +00:00
32 lines
568 B
SCSS
32 lines
568 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;
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
}
|