sf-i-events 1.0.960 → 1.0.961
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 +1 -1
- package/sf-i-events.js +6 -2
- package/src/sf-i-events.ts +6 -2
package/package.json
CHANGED
package/sf-i-events.js
CHANGED
|
@@ -154,6 +154,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
154
154
|
padding-right: 20px;
|
|
155
155
|
border-radius: 10px;
|
|
156
156
|
position: relative;
|
|
157
|
+
z-index: 1;
|
|
157
158
|
}
|
|
158
159
|
.certificate-section h1 {
|
|
159
160
|
font-family: Belanosima;
|
|
@@ -281,13 +282,16 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
281
282
|
background-image: url(https://flagggrc-images.s3.amazonaws.com/logo.png);
|
|
282
283
|
background-position: center;
|
|
283
284
|
background-repeat: repeat;
|
|
284
|
-
background-size:
|
|
285
|
-
|
|
285
|
+
background-size: 200px 53.58px;
|
|
286
|
+
transform: translateZ(0);
|
|
287
|
+
image-rendering: pixelated;
|
|
288
|
+
opacity: 0.05;
|
|
286
289
|
left: 0;
|
|
287
290
|
right: 0;
|
|
288
291
|
top: 0;
|
|
289
292
|
bottom: 0;
|
|
290
293
|
position: absolute;
|
|
294
|
+
z-inidex: 0;
|
|
291
295
|
}
|
|
292
296
|
</style>
|
|
293
297
|
</head>
|
package/src/sf-i-events.ts
CHANGED
|
@@ -157,6 +157,7 @@ export class SfIEvents extends LitElement {
|
|
|
157
157
|
padding-right: 20px;
|
|
158
158
|
border-radius: 10px;
|
|
159
159
|
position: relative;
|
|
160
|
+
z-index: 1;
|
|
160
161
|
}
|
|
161
162
|
.certificate-section h1 {
|
|
162
163
|
font-family: Belanosima;
|
|
@@ -284,13 +285,16 @@ export class SfIEvents extends LitElement {
|
|
|
284
285
|
background-image: url(https://flagggrc-images.s3.amazonaws.com/logo.png);
|
|
285
286
|
background-position: center;
|
|
286
287
|
background-repeat: repeat;
|
|
287
|
-
background-size:
|
|
288
|
-
|
|
288
|
+
background-size: 200px 53.58px;
|
|
289
|
+
transform: translateZ(0);
|
|
290
|
+
image-rendering: pixelated;
|
|
291
|
+
opacity: 0.05;
|
|
289
292
|
left: 0;
|
|
290
293
|
right: 0;
|
|
291
294
|
top: 0;
|
|
292
295
|
bottom: 0;
|
|
293
296
|
position: absolute;
|
|
297
|
+
z-inidex: 0;
|
|
294
298
|
}
|
|
295
299
|
</style>
|
|
296
300
|
</head>
|