19 lines
360 B
SCSS
19 lines
360 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;
|
|
align-items: center;
|
|
|
|
p {
|
|
// need to set line-height to normal for the icons and text to be aligned
|
|
line-height: normal;
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|