cosmos-explorer/less/infobox.less
vchske 955d08e4d0
Added a different message if the account is free tier (#69)
* Added a different upsell message if the account is free tier

* Fixing prettier and unit tests
2020-07-08 10:02:47 -07:00

33 lines
766 B
Plaintext

@import "./Common/Constants";
.infoBoxContainer {
padding: 24px 34px 0px 34px;
.infoBoxContent {
background-color: @BaseLow;
padding: @DefaultSpace;
display: inline-flex;
.infoBoxDetails {
padding-left: @MediumSpace;
margin: auto 0px;
.infoBoxMessage {
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
width: 320px;
padding-top: 2px;
color: @BaseHigh;
display: block;
}
}
.infoBoxIcon {
margin-top: 2px;
width: 32px;
height: 32px;
margin-left: @SmallSpace;
}
}
}