mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
* feat: integrate billing api and wire up billing ui * feat: show billing to admin only if on plans other than basic plan * feat: show billing to admin only if on plans other than basic plan * feat: update notfound snapshot * chore: fix billing sidenav logic * chore: fix several bugs * chore: backend fix for billing * fix: window.open pop blocker issue and error ui (#3750) --------- Co-authored-by: Srikanth Chekuri <srikanth.chekuri92@gmail.com> Co-authored-by: Rajat Dabade <rajat@signoz.io>
37 lines
566 B
SCSS
37 lines
566 B
SCSS
.billing-container {
|
|
padding: 16px 0;
|
|
width: 100%;
|
|
|
|
.billing-summary {
|
|
margin: 24px 8px;
|
|
}
|
|
|
|
.billing-details {
|
|
margin: 36px 8px;
|
|
}
|
|
|
|
.upgrade-plan-benefits {
|
|
margin: 0px 8px;
|
|
border: 1px solid #333;
|
|
border-radius: 5px;
|
|
padding: 0 48px;
|
|
.plan-benefits {
|
|
.plan-benefit {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
margin: 16px 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.ant-skeleton.ant-skeleton-element.ant-skeleton-active {
|
|
width: 100%;
|
|
min-width: 100%;
|
|
}
|
|
|
|
.ant-skeleton.ant-skeleton-element .ant-skeleton-input {
|
|
min-width: 100% !important;
|
|
}
|