@nice-digital/nds-action-banner 4.0.13 → 4.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/scss/action-banner.scss +8 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nice-digital/nds-action-banner",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.14",
|
|
4
4
|
"description": "Action banner component for the NICE Design System",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"banner"
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"@types/node": "^18.11.9",
|
|
48
48
|
"typescript": "^4.8.4"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "257e567bced578ecc2f432b246e72fd4cf899ea8"
|
|
51
51
|
}
|
package/scss/action-banner.scss
CHANGED
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
@include layout.fullWidth();
|
|
68
68
|
@include typography.links-default;
|
|
69
69
|
background: colours.$action-banner-full-width-background;
|
|
70
|
-
border:
|
|
70
|
+
border: 0;
|
|
71
71
|
color: colours.$text-inverse;
|
|
72
72
|
padding: 0;
|
|
73
73
|
|
|
@@ -101,9 +101,15 @@
|
|
|
101
101
|
@include focus.default-button-focus;
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
+
.action-banner__text {
|
|
105
|
+
position: relative;
|
|
106
|
+
width: 66%;
|
|
107
|
+
z-index: 1;
|
|
108
|
+
}
|
|
109
|
+
|
|
104
110
|
&__image-container {
|
|
105
111
|
aspect-ratio: 16 / 9;
|
|
106
|
-
background-position: center
|
|
112
|
+
background-position: center;
|
|
107
113
|
background-size: cover;
|
|
108
114
|
display: block;
|
|
109
115
|
height: 100%;
|