@metropolle/design-system 1.2026.0-1.22.2325 → 1.2026.0-1.24.927

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.
@@ -3808,65 +3808,85 @@ html[data-theme="light"] .mds-profile-card__verified-trigger {
3808
3808
  }
3809
3809
 
3810
3810
  .mds-profile-card__verified-popup {
3811
+ /* Position to the LEFT of the trigger icon */
3811
3812
  position: absolute;
3812
- top: calc(100% + 12px);
3813
- right: 0;
3814
- padding: 16px;
3813
+ top: 50%;
3814
+ right: calc(100% + 12px);
3815
+ transform: translateY(-50%);
3816
+ padding: 32px 40px;
3815
3817
  /* Liquid Glass popup */
3816
- background: rgba(20, 20, 30, 0.75);
3817
- backdrop-filter: blur(16px) saturate(140%);
3818
- -webkit-backdrop-filter: blur(16px) saturate(140%);
3819
- border-radius: 14px;
3820
- border: 1px solid rgba(255, 255, 255, 0.1);
3818
+ background: rgba(20, 20, 30, 0.9);
3819
+ backdrop-filter: blur(24px) saturate(160%);
3820
+ -webkit-backdrop-filter: blur(24px) saturate(160%);
3821
+ border-radius: 20px;
3822
+ border: 1px solid rgba(255, 255, 255, 0.15);
3821
3823
  box-shadow:
3822
- 0 8px 24px rgba(0, 0, 0, 0.25),
3823
- inset 0 1px 0 rgba(255, 255, 255, 0.05);
3824
- min-width: 180px;
3825
- z-index: 20;
3824
+ 0 16px 48px rgba(0, 0, 0, 0.4),
3825
+ inset 0 1px 0 rgba(255, 255, 255, 0.1);
3826
+ min-width: 320px;
3827
+ z-index: 100;
3826
3828
  }
3827
3829
 
3828
3830
  html[data-theme="light"] .mds-profile-card__verified-popup {
3829
- background: rgba(255, 255, 255, 0.7);
3830
- border: 1px solid rgba(255, 255, 255, 0.9);
3831
+ background: rgba(255, 255, 255, 0.92);
3832
+ border: 1px solid rgba(255, 255, 255, 0.98);
3831
3833
  box-shadow:
3832
- 0 8px 24px rgba(0, 0, 0, 0.08),
3834
+ 0 16px 48px rgba(0, 0, 0, 0.15),
3833
3835
  inset 0 1px 0 rgba(255, 255, 255, 1);
3834
3836
  }
3835
3837
 
3838
+ /* Mobile: popup centered on screen */
3839
+ @media (max-width: 768px) {
3840
+ .mds-profile-card__verified-popup {
3841
+ position: fixed;
3842
+ top: 50%;
3843
+ left: 0;
3844
+ right: 0;
3845
+ bottom: auto;
3846
+ transform: translateY(-50%);
3847
+ width: 280px;
3848
+ min-width: auto;
3849
+ margin-left: auto;
3850
+ margin-right: auto;
3851
+ padding: 24px 28px;
3852
+ z-index: 1000;
3853
+ }
3854
+ }
3855
+
3836
3856
  .mds-profile-card__verified-header {
3837
3857
  font-family: 'OCR-B', 'OCR B Std', 'Courier New', monospace;
3838
- font-size: 12px;
3858
+ font-size: 16px;
3839
3859
  font-weight: bold;
3840
3860
  color: #00d4aa;
3841
3861
  letter-spacing: 0.08em;
3842
3862
  text-transform: uppercase;
3843
- margin-bottom: 14px;
3863
+ margin-bottom: 20px;
3844
3864
  white-space: nowrap;
3845
3865
  }
3846
3866
 
3847
3867
  .mds-profile-card__verified-stats {
3848
3868
  display: flex;
3849
3869
  flex-direction: column;
3850
- gap: 10px;
3870
+ gap: 14px;
3851
3871
  }
3852
3872
 
3853
3873
  .mds-profile-card__stat-item {
3854
3874
  display: flex;
3855
3875
  justify-content: space-between;
3856
3876
  align-items: center;
3857
- gap: 20px;
3877
+ gap: 32px;
3858
3878
  }
3859
3879
 
3860
3880
  .mds-profile-card__stat-label {
3861
3881
  font-family: 'OCR-B', 'OCR B Std', 'Courier New', monospace;
3862
- font-size: 11px;
3882
+ font-size: 14px;
3863
3883
  color: var(--mds-color-text-tertiary, rgba(255, 255, 255, 0.5));
3864
3884
  letter-spacing: 0.06em;
3865
3885
  }
3866
3886
 
3867
3887
  .mds-profile-card__stat-value {
3868
3888
  font-family: 'OCR-B', 'OCR B Std', 'Courier New', monospace;
3869
- font-size: 11px;
3889
+ font-size: 14px;
3870
3890
  letter-spacing: 0.06em;
3871
3891
  text-transform: uppercase;
3872
3892
  color: var(--mds-color-text-tertiary, rgba(255, 255, 255, 0.5));
@@ -3880,8 +3900,8 @@ html[data-theme="light"] .mds-profile-card__verified-popup {
3880
3900
  display: flex;
3881
3901
  justify-content: space-between;
3882
3902
  align-items: center;
3883
- margin-top: 14px;
3884
- padding-top: 10px;
3903
+ margin-top: 20px;
3904
+ padding-top: 16px;
3885
3905
  border-top: 1px solid rgba(255, 255, 255, 0.08);
3886
3906
  }
3887
3907
 
@@ -3892,7 +3912,7 @@ html[data-theme="light"] .mds-profile-card__verified-footer {
3892
3912
  .mds-profile-card__verified-sequence,
3893
3913
  .mds-profile-card__verified-date {
3894
3914
  font-family: 'OCR-B', 'OCR B Std', 'Courier New', monospace;
3895
- font-size: 10px;
3915
+ font-size: 12px;
3896
3916
  color: var(--mds-color-text-tertiary, rgba(255, 255, 255, 0.4));
3897
3917
  letter-spacing: 0.06em;
3898
3918
  text-transform: uppercase;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metropolle/design-system",
3
- "version": "1.2026.01.22.2325",
3
+ "version": "1.2026.01.24.0927",
4
4
  "description": "Sistema de design unificado para a plataforma Metropolle",
5
5
  "type": "module",
6
6
  "main": "dist/react/index.js",