Skip to content

Commit 9e04392

Browse files
committed
feat: add textured bg in license card
1 parent eb095d7 commit 9e04392

File tree

5 files changed

+270
-6
lines changed

5 files changed

+270
-6
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devtron-labs/devtron-fe-common-lib",
3-
"version": "1.10.0-patch-1-beta-3",
3+
"version": "1.10.0-patch-1-beta-4",
44
"description": "Supporting common component library",
55
"type": "module",
66
"main": "dist/index.js",

src/Assets/Img/licenseCardBG.svg

Lines changed: 259 additions & 0 deletions
Loading

src/Shared/Components/DevtronLicenseCard/DevtronLicenseCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export const DevtronLicenseCard = ({
9292
}}
9393
whileHover={{ scale: 1.05 }}
9494
>
95-
<div className="p-20 flexbox-col dc__content-space flex-grow-1">
95+
<div className="p-20 flexbox-col dc__content-space flex-grow-1 textured-bg">
9696
<div className="flexbox dc__content-space dc__gap-72">
9797
<span className="font-merriweather cn-9 fs-16 fw-7 lh-1-5 dc__ellipsis-right__2nd-line">
9898
{enterpriseName}

src/Shared/Components/DevtronLicenseCard/licenseCard.scss

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
.license-card {
2-
1+
.license-card {
2+
3+
.textured-bg {
4+
background-image: url('../../../Assets/Img/licenseCardBG.svg');
5+
background-size: cover;
6+
}
7+
38
.trial-license-badge {
49
background-color: var(--divider-secondary-translucent);
510
letter-spacing: 0.55px;

0 commit comments

Comments
 (0)