@pmidc/upyog-css 1.2.40 → 1.2.41
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/dist/index.css +21 -0
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/index.scss +15 -0
package/package.json
CHANGED
package/src/index.scss
CHANGED
|
@@ -2420,3 +2420,18 @@ input[type="date"] {
|
|
|
2420
2420
|
max-width: 600px;
|
|
2421
2421
|
padding: 20px;
|
|
2422
2422
|
}
|
|
2423
|
+
|
|
2424
|
+
.security-banner {
|
|
2425
|
+
width: 100%;
|
|
2426
|
+
max-width: 920px;
|
|
2427
|
+
margin: 1px auto 20px auto;
|
|
2428
|
+
padding: 16px 24px;
|
|
2429
|
+
border-radius: 12px;
|
|
2430
|
+
background: linear-gradient(90deg, #1e4db7, #3a7bd5);
|
|
2431
|
+
color: #ffffff;
|
|
2432
|
+
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
|
|
2433
|
+
display: flex;
|
|
2434
|
+
gap: 14px;
|
|
2435
|
+
align-items: flex-start;
|
|
2436
|
+
line-height: 1.6;
|
|
2437
|
+
}
|