@pmidc/upyog-css 1.2.35-dev.1.1 → 1.2.35-dev.1.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pmidc/upyog-css",
3
- "version": "1.2.35-dev.1.1",
3
+ "version": "1.2.35-dev.1.2",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "engines": {
package/src/index.scss CHANGED
@@ -145,6 +145,7 @@
145
145
  .display-none {
146
146
  display: none;
147
147
  }
148
+
148
149
  .primary-label-btn {
149
150
  margin: 10px auto 0px !important;
150
151
  }
@@ -2359,3 +2360,50 @@ input[type="date"] {
2359
2360
  }
2360
2361
  }
2361
2362
  }
2363
+ .language-plugin{
2364
+ position: fixed;
2365
+ top: 16px;
2366
+ right: 20px;
2367
+ z-index: 99999;
2368
+ background: linear-gradient(135deg, rgb(37, 99, 235), rgb(124, 58, 237));
2369
+ padding: 6px 10px;
2370
+ border-radius:8px;
2371
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
2372
+ display: flex;
2373
+ align-items: center;
2374
+ }
2375
+ .language-plugin svg path{
2376
+ fill: #FFF;
2377
+ }
2378
+ .language-plugin:hover{
2379
+ transform: translateY(-3px) scale(1.03);
2380
+ box-shadow:
2381
+ 0 10px 20px rgba(0, 0, 0, 0.25),
2382
+ 0 0 20px rgba(59, 130, 246, 0.5),
2383
+ 0 0 35px rgba(14, 165, 233, 0.4);
2384
+ }
2385
+ .language-plugin-landing{
2386
+ position: fixed;
2387
+ top: 16px;
2388
+ right: 20px;
2389
+ z-index: 99999;
2390
+ background: #FFF;
2391
+ padding: 6px 10px;
2392
+ border-radius:8px;
2393
+ display: flex;
2394
+ align-items: center;
2395
+ backdrop-filter: blur(12px);
2396
+ -webkit-backdrop-filter: blur(12px);
2397
+ box-shadow:0 8px 32px rgba(0, 0, 0, 0.2);
2398
+ transition: all 0.3s ease;
2399
+ }
2400
+ .language-plugin-landing:hover{
2401
+ transform: translateY(-3px) scale(1.03);
2402
+ box-shadow:
2403
+ 0 10px 20px rgba(0, 0, 0, 0.25),
2404
+ 0 0 20px rgba(59, 130, 246, 0.5),
2405
+ 0 0 35px rgba(14, 165, 233, 0.4);
2406
+ }
2407
+ .margin-right-50{
2408
+ margin-right: 50px;
2409
+ }