You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
1.3 KiB

@import "../variables/mixins";
@import "../variables/colors";
@import "../variables/sizes";
// Upgrade element
.UpgradeElement {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 80px;
padding: 20px;
border-radius: $sIcon-borderRadius;
background: $cCard-hoverFill;
}
.UpgradeElement--fixed {
width: 500px;
margin: 30px 0;
}
.UpgradeElement--noMargins {
padding: 0;
border: none;
border-radius: 0;
}
.UpgradeElement-info {
display: flex;
align-items: center;
justify-content: flex-start;
}
.UpgradeElement-infoIcon {
margin-right: $sMargin-element;
border-color: #1899DD;
color: #008EDA;
line-height: $sLineHeight-normal;
}
.UpgradeElement-infoText {
font-family: 'Montserrat';
font-size: $sFontSize-smallUpperCase;
font-weight: 600;
letter-spacing: 0;
line-height: $sLineHeight-small;
text-align: right;
}
.UpgradeElement-actions {
display: flex;
align-items: center;
justify-content: flex-start;
}
.UpgradeElement-trial {
display: flex;
align-items: center;
justify-content: flex-start;
}
.UpgradeElement-trialIcon,
.UpgradeElement-trialText {
color: $cTypography-paragraphs;
font-size: $sFontSize-normal;
line-height: $sLineHeight-normal;
}
.UpgradeElement-trialText {
margin-left: 5px;
}
.UpgradeElement-button {
margin-left: 20px;
}