@streamoid/ui 0.2.5 → 0.2.6

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/README.md CHANGED
@@ -35,10 +35,11 @@ function App() {
35
35
 
36
36
  ## Features
37
37
 
38
- - 50+ Reusable Components
38
+ - 60+ Reusable Components (desktop + mobile)
39
39
  - TypeScript Support
40
- - Tailwind CSS Compatible
41
- - Fully Customizable
40
+ - CSS Modules with Design Tokens
41
+ - Controlled & Uncontrolled component patterns
42
+ - Mobile-first components for Teams, Settings, Billing, Workspace
42
43
 
43
44
  ## License
44
45
 
package/dist/index.css CHANGED
@@ -1131,6 +1131,8 @@
1131
1131
  line-height: var(--text-text-sm-regular-line-height, 1.25rem);
1132
1132
  font-weight: var(--text-text-sm-regular-font-weight, 400);
1133
1133
  position: relative;
1134
+ flex: 1;
1135
+ min-width: 0;
1134
1136
  }
1135
1137
  .ScPairtext_scPairtext.ScPairtext_icon-position-left .ScPairtext_scCheckboxInstance,
1136
1138
  .ScPairtext_scPairtext.ScPairtext_icon-position-left .ScPairtext_scRadioInstance,
@@ -2707,6 +2709,17 @@
2707
2709
  flex-shrink: 0 !important;
2708
2710
  height: 1.5rem !important;
2709
2711
  }
2712
+ .ScProfileImageUpdate_profileInitials {
2713
+ display: flex;
2714
+ align-items: center;
2715
+ justify-content: center;
2716
+ background: var(--alias-fill-neutral-neutralselected, #242424);
2717
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
2718
+ font-family: var(--font-family-font-family-body, "Inter", sans-serif);
2719
+ font-size: var(--font-size-font-size-xxl, 1.75rem);
2720
+ font-weight: 500;
2721
+ line-height: var(--line-height-line-height-xxl, 2.25rem);
2722
+ }
2710
2723
  .ScProfileImageUpdate_siconUploadInstance {
2711
2724
  width: 1.25rem !important;
2712
2725
  height: 1.25rem !important;
@@ -3062,7 +3075,7 @@
3062
3075
  gap: var(--spacing-xs, 0.25rem);
3063
3076
  align-items: flex-start;
3064
3077
  justify-content: center;
3065
- width: 20rem;
3078
+ width: 100%;
3066
3079
  position: relative;
3067
3080
  }
3068
3081
  .ScTextField_scTextField.ScTextField_label-group-none {
@@ -3148,11 +3161,15 @@
3148
3161
  .ScTextField_scTextField.ScTextField_state-filled .ScTextField_inputText {
3149
3162
  color: var(--alias-text-and-icons-primary, #f5f5f5);
3150
3163
  }
3151
- .ScTextField_scTextField.ScTextField_state-ative-focused .ScTextField_inputContainer {
3164
+ .ScTextField_scTextField.ScTextField_state-active .ScTextField_inputContainer {
3165
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
3152
3166
  border-style: solid;
3153
3167
  border-color: var(--alias-border-strong, #5c5c5c);
3154
3168
  border-width: 0.0625rem;
3155
3169
  }
3170
+ .ScTextField_scTextField.ScTextField_state-active .ScTextField_inputText {
3171
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
3172
+ }
3156
3173
  .ScTextField_ScTextField_labelContainer,
3157
3174
  .ScTextField_scTextField.ScTextField_label-group-none .ScTextField_labelContainer {
3158
3175
  display: none;
@@ -4024,7 +4041,7 @@
4024
4041
  gap: var(--spacing-xs, 0.25rem);
4025
4042
  align-items: flex-start;
4026
4043
  justify-content: center;
4027
- width: 20rem;
4044
+ width: 100%;
4028
4045
  position: relative;
4029
4046
  }
4030
4047
  .ScOnlyField_inputContainer {
@@ -4113,7 +4130,7 @@
4113
4130
  gap: var(--spacing-xs, 0.25rem);
4114
4131
  align-items: flex-start;
4115
4132
  justify-content: center;
4116
- width: 20rem;
4133
+ width: 100%;
4117
4134
  position: relative;
4118
4135
  }
4119
4136
  .ScCheckField_labelContainer {
@@ -4455,7 +4472,7 @@
4455
4472
  gap: var(--spacing-xs, 0.25rem);
4456
4473
  align-items: flex-start;
4457
4474
  justify-content: center;
4458
- width: 20rem;
4475
+ width: 100%;
4459
4476
  position: relative;
4460
4477
  }
4461
4478
  .ScTabField_labelContainer {
@@ -5691,149 +5708,149 @@
5691
5708
  margin: 0;
5692
5709
  }
5693
5710
 
5694
- /* src/SC-InvoiceHistory-Mobile/ScInvoiceHistoryMobile.module.css */
5695
- .ScInvoiceHistoryMobile_scInvoiceHistoryMobile {
5711
+ /* src/SC-InvoiceHistoryMobile/InvoiceHistoryMobile.module.css */
5712
+ .InvoiceHistoryMobile_invoiceHistoryMobile,
5713
+ .InvoiceHistoryMobile_invoiceHistoryMobile * {
5714
+ box-sizing: border-box;
5715
+ }
5716
+ .InvoiceHistoryMobile_invoiceHistoryMobile {
5696
5717
  display: flex;
5718
+ gap: var(--spacing-xl, 0.75rem);
5697
5719
  align-items: flex-start;
5698
- gap: var(--spacing-xl, 12px);
5699
- padding: var(--spacing-3xl, 16px);
5720
+ padding: var(--spacing-3xl, 1rem);
5700
5721
  border-bottom: 0.5px solid var(--alias-border-divider, #242424);
5722
+ position: relative;
5701
5723
  width: 100%;
5702
- box-sizing: border-box;
5703
- }
5704
- .ScInvoiceHistoryMobile_scInvoiceHistoryMobile * {
5705
- box-sizing: border-box;
5706
5724
  }
5707
- .ScInvoiceHistoryMobile_invoiceInfo {
5725
+ .InvoiceHistoryMobile_info {
5708
5726
  display: flex;
5709
5727
  flex-direction: column;
5710
- flex: 1 0 0;
5728
+ gap: var(--spacing-xs, 0.25rem);
5729
+ align-items: flex-start;
5730
+ flex: 1;
5711
5731
  min-width: 0;
5712
- gap: var(--spacing-xs, 4px);
5713
5732
  }
5714
- .ScInvoiceHistoryMobile_invoiceNumber {
5733
+ .InvoiceHistoryMobile_invoiceId {
5734
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
5715
5735
  font-family: var(--font-family-font-family-body, "Inter", sans-serif);
5716
- font-weight: var(--font-weight-font-weight-regular, 400);
5717
- font-size: 16px;
5718
- line-height: var(--line-height-line-height-md, 24px);
5719
- color: var(--alias-text-icons-primary, #f5f5f5);
5736
+ font-size: var(--font-size-font-size-md, 1rem);
5737
+ line-height: var(--line-height-line-height-md, 1.5rem);
5738
+ font-weight: 400;
5720
5739
  overflow: hidden;
5721
5740
  text-overflow: ellipsis;
5722
5741
  white-space: nowrap;
5723
- margin: 0;
5724
5742
  width: 100%;
5725
5743
  }
5726
- .ScInvoiceHistoryMobile_date {
5744
+ .InvoiceHistoryMobile_date {
5745
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
5727
5746
  font-family: var(--font-family-font-family-body, "Inter", sans-serif);
5728
- font-weight: var(--font-weight-font-weight-regular, 400);
5729
- font-size: 14px;
5730
- line-height: var(--line-height-line-height-sm, 20px);
5731
- color: var(--alias-text-icons-tertiary, #9e9e9e);
5747
+ font-size: var(--font-size-font-size-sm, 0.875rem);
5748
+ line-height: var(--line-height-line-height-sm, 1.25rem);
5749
+ font-weight: 400;
5732
5750
  overflow: hidden;
5733
5751
  text-overflow: ellipsis;
5734
5752
  white-space: nowrap;
5735
- margin: 0;
5736
5753
  width: 100%;
5737
5754
  }
5738
- .ScInvoiceHistoryMobile_amount {
5755
+ .InvoiceHistoryMobile_amount {
5756
+ color: var(--alias-text-and-icons-success, #00b96b);
5739
5757
  font-family: var(--font-family-font-family-body, "Inter", sans-serif);
5740
- font-weight: var(--font-weight-font-weight-semibold, 600);
5741
- font-size: 16px;
5742
- line-height: var(--line-height-line-height-md, 24px);
5743
- color: var(--alias-text-icons-success, #00b96b);
5758
+ font-size: var(--font-size-font-size-md, 1rem);
5759
+ line-height: var(--line-height-line-height-md, 1.5rem);
5760
+ font-weight: 600;
5744
5761
  text-align: right;
5762
+ overflow: hidden;
5763
+ text-overflow: ellipsis;
5745
5764
  white-space: nowrap;
5746
5765
  flex-shrink: 0;
5747
- margin: 0;
5748
5766
  }
5749
5767
 
5750
- /* src/SC-UsageHistory-Mobile/ScUsageHistoryMobile.module.css */
5751
- .ScUsageHistoryMobile_scUsageHistoryMobile {
5768
+ /* src/SC-UsageHistoryMobile/UsageHistoryMobile.module.css */
5769
+ .UsageHistoryMobile_usageHistoryMobile,
5770
+ .UsageHistoryMobile_usageHistoryMobile * {
5771
+ box-sizing: border-box;
5772
+ }
5773
+ .UsageHistoryMobile_usageHistoryMobile {
5752
5774
  display: flex;
5753
5775
  flex-direction: column;
5754
- gap: var(--spacing-xs, 4px);
5776
+ gap: var(--spacing-xs, 0.25rem);
5755
5777
  align-items: flex-start;
5756
- padding: var(--spacing-3xl, 16px);
5778
+ padding: var(--spacing-3xl, 1rem);
5757
5779
  border-bottom: 0.5px solid var(--alias-border-divider, #242424);
5780
+ position: relative;
5758
5781
  width: 100%;
5759
- box-sizing: border-box;
5760
- }
5761
- .ScUsageHistoryMobile_scUsageHistoryMobile * {
5762
- box-sizing: border-box;
5763
5782
  }
5764
- .ScUsageHistoryMobile_topRow {
5783
+ .UsageHistoryMobile_row1 {
5765
5784
  display: flex;
5785
+ gap: var(--spacing-xl, 0.75rem);
5766
5786
  align-items: center;
5767
- gap: var(--spacing-xl, 12px);
5768
5787
  width: 100%;
5769
5788
  }
5770
- .ScUsageHistoryMobile_title {
5771
- flex: 1 0 0;
5789
+ .UsageHistoryMobile_serviceName {
5790
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
5772
5791
  font-family: var(--font-family-font-family-body, "Inter", sans-serif);
5773
- font-weight: var(--font-weight-font-weight-regular, 400);
5774
- font-size: var(--font-size-font-size-sm, 14px);
5775
- line-height: var(--line-height-line-height-sm, 20px);
5776
- color: var(--alias-text-icons-primary, #f5f5f5);
5792
+ font-size: var(--font-size-font-size-sm, 0.875rem);
5793
+ line-height: var(--line-height-line-height-sm, 1.25rem);
5794
+ font-weight: 400;
5795
+ flex: 1;
5796
+ min-width: 0;
5777
5797
  overflow: hidden;
5778
5798
  text-overflow: ellipsis;
5779
5799
  white-space: nowrap;
5780
- margin: 0;
5781
- min-width: 0;
5782
5800
  }
5783
- .ScUsageHistoryMobile_usageCount {
5801
+ .UsageHistoryMobile_credits {
5802
+ color: var(--alias-text-and-icons-error, #d11a1a);
5784
5803
  font-family: var(--font-family-font-family-body, "Inter", sans-serif);
5785
- font-weight: var(--font-weight-font-weight-semibold, 600);
5786
- font-size: 16px;
5787
- line-height: var(--line-height-line-height-md, 24px);
5788
- color: var(--alias-text-icons-error, #d11a1a);
5804
+ font-size: var(--font-size-font-size-md, 1rem);
5805
+ line-height: var(--line-height-line-height-md, 1.5rem);
5806
+ font-weight: 600;
5789
5807
  text-align: right;
5808
+ overflow: hidden;
5809
+ text-overflow: ellipsis;
5790
5810
  white-space: nowrap;
5791
5811
  flex-shrink: 0;
5792
- margin: 0;
5793
5812
  }
5794
- .ScUsageHistoryMobile_bottomRow {
5813
+ .UsageHistoryMobile_row2 {
5795
5814
  display: flex;
5815
+ gap: var(--spacing-xl, 0.75rem);
5796
5816
  align-items: center;
5797
- gap: var(--spacing-xl, 12px);
5798
5817
  width: 100%;
5799
5818
  }
5800
- .ScUsageHistoryMobile_metaInfo {
5819
+ .UsageHistoryMobile_metaLeft {
5801
5820
  display: flex;
5802
- align-items: center;
5803
- gap: var(--spacing-lg, 9px);
5804
- flex: 1 0 0;
5821
+ flex: 1;
5805
5822
  min-width: 0;
5823
+ gap: 9px;
5824
+ align-items: center;
5806
5825
  }
5807
- .ScUsageHistoryMobile_metaText {
5826
+ .UsageHistoryMobile_metaText {
5827
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
5808
5828
  font-family: var(--font-family-font-family-body, "Inter", sans-serif);
5809
- font-weight: var(--font-weight-font-weight-regular, 400);
5810
- font-size: 14px;
5811
- line-height: var(--line-height-line-height-sm, 20px);
5812
- color: var(--alias-text-icons-tertiary, #9e9e9e);
5829
+ font-size: var(--font-size-font-size-sm, 0.875rem);
5830
+ line-height: var(--line-height-line-height-sm, 1.25rem);
5831
+ font-weight: 400;
5813
5832
  overflow: hidden;
5814
5833
  text-overflow: ellipsis;
5815
5834
  white-space: nowrap;
5816
5835
  flex-shrink: 0;
5817
- margin: 0;
5818
5836
  }
5819
- .ScUsageHistoryMobile_vDivider {
5837
+ .UsageHistoryMobile_divider {
5820
5838
  width: 0;
5821
- height: 12px;
5822
- border-left: 0.5px solid var(--alias-border-subtle, #242424);
5839
+ height: 0.75rem;
5823
5840
  flex-shrink: 0;
5841
+ border-left: 0.5px solid var(--alias-border-divider, #242424);
5824
5842
  }
5825
- .ScUsageHistoryMobile_totalCount {
5843
+ .UsageHistoryMobile_balance {
5844
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
5826
5845
  font-family: var(--font-family-font-family-body, "Inter", sans-serif);
5827
- font-weight: var(--font-weight-font-weight-regular, 400);
5828
- font-size: 14px;
5829
- line-height: var(--line-height-line-height-sm, 20px);
5830
- color: var(--alias-text-icons-tertiary, #9e9e9e);
5846
+ font-size: var(--font-size-font-size-sm, 0.875rem);
5847
+ line-height: var(--line-height-line-height-sm, 1.25rem);
5848
+ font-weight: 400;
5831
5849
  text-align: right;
5832
5850
  overflow: hidden;
5833
5851
  text-overflow: ellipsis;
5834
5852
  white-space: nowrap;
5835
5853
  flex-shrink: 0;
5836
- margin: 0;
5837
5854
  }
5838
5855
 
5839
5856
  /* src/SC-WorkspaceSwitchMobile-V2/ScWorkspaceSwitchMobileV2.module.css */
@@ -5844,7 +5861,7 @@
5844
5861
  padding: var(--spacing-xs, 4px) var(--spacing-xl, 12px) var(--spacing-xs, 4px) var(--spacing-xs, 4px);
5845
5862
  border-radius: var(--radius-3xl, 16px);
5846
5863
  border: 0.5px solid;
5847
- width: 326px;
5864
+ width: 100%;
5848
5865
  box-sizing: border-box;
5849
5866
  }
5850
5867
  .ScWorkspaceSwitchMobileV2_scWorkspaceSwitchMobileV2 * {
@@ -5858,6 +5875,11 @@
5858
5875
  background: var(--alias-surface-base, #101010);
5859
5876
  border-color: var(--alias-border-subtle, #242424);
5860
5877
  }
5878
+ .ScWorkspaceSwitchMobileV2_type-display {
5879
+ background: var(--alias-surface-base, #101010);
5880
+ border: none;
5881
+ padding: 0;
5882
+ }
5861
5883
  .ScWorkspaceSwitchMobileV2_workspaceInfo {
5862
5884
  display: flex;
5863
5885
  flex: 1 0 0;
@@ -5868,35 +5890,8 @@
5868
5890
  .ScWorkspaceSwitchMobileV2_dpContainer {
5869
5891
  display: flex;
5870
5892
  align-items: center;
5871
- align-self: stretch;
5872
5893
  flex-shrink: 0;
5873
5894
  }
5874
- .ScWorkspaceSwitchMobileV2_dp {
5875
- display: flex;
5876
- align-items: center;
5877
- justify-content: center;
5878
- aspect-ratio: 1;
5879
- height: 100%;
5880
- padding: var(--spacing-none, 0px);
5881
- border-radius: var(--radius-xl, 12px);
5882
- }
5883
- .ScWorkspaceSwitchMobileV2_dp-currentWS {
5884
- background: var(--alias-fill-neutral-neutralactive, #313131);
5885
- }
5886
- .ScWorkspaceSwitchMobileV2_dp-otherWS {
5887
- background: var(--alias-fill-neutral-neutralselected, #242424);
5888
- }
5889
- .ScWorkspaceSwitchMobileV2_dpText {
5890
- font-family: var(--font-family-font-family-body, "Inter", sans-serif);
5891
- font-weight: var(--font-weight-font-weight-medium, 500);
5892
- font-size: var(--font-size-font-size-md, 16px);
5893
- line-height: var(--line-height-line-height-md, 24px);
5894
- color: var(--alias-text-icons-primary, #f5f5f5);
5895
- text-align: center;
5896
- overflow: hidden;
5897
- text-overflow: ellipsis;
5898
- white-space: nowrap;
5899
- }
5900
5895
  .ScWorkspaceSwitchMobileV2_textContainer {
5901
5896
  display: flex;
5902
5897
  flex-direction: column;
@@ -5933,6 +5928,9 @@
5933
5928
  white-space: nowrap;
5934
5929
  flex-shrink: 0;
5935
5930
  }
5931
+ .ScWorkspaceSwitchMobileV2_roleMember {
5932
+ color: var(--alias-text-icons-info, #155cd6);
5933
+ }
5936
5934
  .ScWorkspaceSwitchMobileV2_dot {
5937
5935
  width: 16px;
5938
5936
  height: 16px;
@@ -5972,3 +5970,322 @@
5972
5970
  flex: 1 0 0;
5973
5971
  min-width: 0;
5974
5972
  }
5973
+
5974
+ /* src/SC-imageField/ScImageField.module.css */
5975
+ .ScImageField_scImageField,
5976
+ .ScImageField_scImageField * {
5977
+ box-sizing: border-box;
5978
+ }
5979
+ .ScImageField_scImageField {
5980
+ display: flex;
5981
+ flex-direction: column;
5982
+ gap: var(--spacing-xs, 0.25rem);
5983
+ align-items: flex-start;
5984
+ justify-content: center;
5985
+ width: 100%;
5986
+ position: relative;
5987
+ }
5988
+ .ScImageField_labelContainer {
5989
+ display: flex;
5990
+ gap: var(--spacing-3xl, 0);
5991
+ height: 1.5rem;
5992
+ align-items: center;
5993
+ align-self: stretch;
5994
+ flex-shrink: 0;
5995
+ position: relative;
5996
+ }
5997
+ .ScImageField_label {
5998
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
5999
+ text-align: left;
6000
+ font-family: var(--font-family-font-family-body, "Inter", sans-serif);
6001
+ font-size: var(--font-size-font-size-sm, 0.875rem);
6002
+ line-height: var(--line-height-line-height-sm, 1.25rem);
6003
+ font-weight: 400;
6004
+ position: relative;
6005
+ flex: 1;
6006
+ min-width: 0;
6007
+ height: 1.25rem;
6008
+ display: flex;
6009
+ align-items: center;
6010
+ }
6011
+ .ScImageField_uploadArea {
6012
+ background: var(--alias-fill-neutral-neutralplus, #151515);
6013
+ border-radius: var(--radius-3xl, 1rem);
6014
+ display: flex;
6015
+ gap: var(--spacing-md, 0.5rem);
6016
+ align-items: center;
6017
+ justify-content: center;
6018
+ align-self: stretch;
6019
+ flex-shrink: 0;
6020
+ height: 7.5rem;
6021
+ position: relative;
6022
+ cursor: pointer;
6023
+ }
6024
+ .ScImageField_uploadIcon {
6025
+ width: 1.5rem !important;
6026
+ height: 1.5rem !important;
6027
+ flex-shrink: 0;
6028
+ }
6029
+ .ScImageField_uploadText {
6030
+ color: var(--alias-text-and-icons-secondary, #dadada);
6031
+ font-family: var(--font-family-font-family-body, "Inter", sans-serif);
6032
+ font-size: var(--font-size-font-size-sm, 0.875rem);
6033
+ line-height: var(--line-height-line-height-sm, 1.25rem);
6034
+ font-weight: 400;
6035
+ text-align: center;
6036
+ flex-shrink: 0;
6037
+ }
6038
+ .ScImageField_previewArea {
6039
+ background: var(--alias-fill-neutral-neutralplus, #151515);
6040
+ border-radius: var(--radius-3xl, 1rem);
6041
+ display: flex;
6042
+ gap: var(--spacing-md, 0.5rem);
6043
+ align-items: center;
6044
+ justify-content: center;
6045
+ align-self: stretch;
6046
+ flex-shrink: 0;
6047
+ height: 7.5rem;
6048
+ padding: var(--spacing-3xl, 1rem) var(--spacing-xl, 0.75rem);
6049
+ position: relative;
6050
+ }
6051
+ .ScImageField_previewImage {
6052
+ height: 100%;
6053
+ aspect-ratio: 1;
6054
+ border-radius: var(--radius-md, 0.5rem);
6055
+ object-fit: cover;
6056
+ flex-shrink: 0;
6057
+ }
6058
+ .ScImageField_fileName {
6059
+ color: var(--alias-text-and-icons-secondary, #dadada);
6060
+ font-family: var(--font-family-font-family-body, "Inter", sans-serif);
6061
+ font-size: var(--font-size-font-size-sm, 0.875rem);
6062
+ line-height: var(--line-height-line-height-sm, 1.25rem);
6063
+ font-weight: 400;
6064
+ flex: 1;
6065
+ min-width: 0;
6066
+ overflow: hidden;
6067
+ text-overflow: ellipsis;
6068
+ white-space: nowrap;
6069
+ }
6070
+ .ScImageField_removeIcon {
6071
+ width: 1.5rem !important;
6072
+ height: 1.5rem !important;
6073
+ flex-shrink: 0;
6074
+ cursor: pointer;
6075
+ }
6076
+
6077
+ /* src/SC-settingsTabComp/ScSettingsTabComp.module.css */
6078
+ .ScSettingsTabComp_scSettingsTabComp,
6079
+ .ScSettingsTabComp_scSettingsTabComp * {
6080
+ box-sizing: border-box;
6081
+ }
6082
+ .ScSettingsTabComp_scSettingsTabComp {
6083
+ display: flex;
6084
+ height: 3.5rem;
6085
+ align-items: center;
6086
+ justify-content: center;
6087
+ padding: var(--spacing-xl, 0.75rem);
6088
+ position: relative;
6089
+ flex-shrink: 0;
6090
+ cursor: pointer;
6091
+ }
6092
+ .ScSettingsTabComp_tabText {
6093
+ font-family: var(--font-family-font-family-body, "Inter", sans-serif);
6094
+ font-size: var(--font-size-font-size-md, 1rem);
6095
+ line-height: var(--line-height-line-height-md, 1.5rem);
6096
+ font-weight: 400;
6097
+ text-align: center;
6098
+ white-space: nowrap;
6099
+ position: relative;
6100
+ flex-shrink: 0;
6101
+ }
6102
+ .ScSettingsTabComp_scSettingsTabComp.ScSettingsTabComp_active-true {
6103
+ border-bottom: 1.25px solid var(--alias-text-and-icons-primary, #f5f5f5);
6104
+ }
6105
+ .ScSettingsTabComp_scSettingsTabComp.ScSettingsTabComp_active-true .ScSettingsTabComp_tabText {
6106
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6107
+ }
6108
+ .ScSettingsTabComp_scSettingsTabComp.ScSettingsTabComp_active-false .ScSettingsTabComp_tabText {
6109
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
6110
+ }
6111
+
6112
+ /* src/SC-Credits usage card-Mobile/ScCreditsUsageCardMobile.module.css */
6113
+ .ScCreditsUsageCardMobile_scCreditsUsageCardMobile,
6114
+ .ScCreditsUsageCardMobile_scCreditsUsageCardMobile * {
6115
+ box-sizing: border-box;
6116
+ }
6117
+ .ScCreditsUsageCardMobile_scCreditsUsageCardMobile {
6118
+ backdrop-filter: blur(4px);
6119
+ background: var(--alias-surface-base, #101010);
6120
+ border-radius: var(--radius-3xl, 1rem);
6121
+ border: 1px solid var(--alias-border-subtle, #242424);
6122
+ display: flex;
6123
+ flex-direction: column;
6124
+ gap: var(--spacing-3xl, 1rem);
6125
+ align-items: flex-start;
6126
+ padding: var(--spacing-3xl, 1rem);
6127
+ position: relative;
6128
+ width: 100%;
6129
+ }
6130
+ .ScCreditsUsageCardMobile_header {
6131
+ display: flex;
6132
+ gap: var(--gp8, 0.5rem);
6133
+ height: 1.5rem;
6134
+ align-items: center;
6135
+ align-self: stretch;
6136
+ flex-shrink: 0;
6137
+ }
6138
+ .ScCreditsUsageCardMobile_headerIcon {
6139
+ width: 1.5rem !important;
6140
+ height: 1.5rem !important;
6141
+ flex-shrink: 0;
6142
+ }
6143
+ .ScCreditsUsageCardMobile_headerLabel {
6144
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6145
+ font-family: var(--font-family-font-family-body, "Inter", sans-serif);
6146
+ font-size: var(--font-size-font-size-sm, 0.875rem);
6147
+ line-height: var(--line-height-line-height-sm, 1.25rem);
6148
+ font-weight: 400;
6149
+ white-space: nowrap;
6150
+ flex-shrink: 0;
6151
+ }
6152
+ .ScCreditsUsageCardMobile_divider {
6153
+ height: 0;
6154
+ width: 100%;
6155
+ flex-shrink: 0;
6156
+ border-top: 0.5px solid var(--alias-border-divider, #242424);
6157
+ }
6158
+ .ScCreditsUsageCardMobile_usageInfo {
6159
+ display: flex;
6160
+ flex-direction: column;
6161
+ gap: 0.5rem;
6162
+ align-items: flex-start;
6163
+ align-self: stretch;
6164
+ flex-shrink: 0;
6165
+ }
6166
+ .ScCreditsUsageCardMobile_usageText {
6167
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6168
+ font-family: var(--font-family-font-family-body, "Inter", sans-serif);
6169
+ font-size: var(--font-size-font-size-lg, 1.125rem);
6170
+ line-height: var(--line-height-line-height-lg, 1.625rem);
6171
+ font-weight: 500;
6172
+ width: 100%;
6173
+ }
6174
+ .ScCreditsUsageCardMobile_remainingText {
6175
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6176
+ font-family: var(--font-family-font-family-body, "Inter", sans-serif);
6177
+ font-size: var(--font-size-font-size-sm, 0.875rem);
6178
+ line-height: var(--line-height-line-height-sm, 1.25rem);
6179
+ font-weight: 500;
6180
+ width: 100%;
6181
+ }
6182
+ .ScCreditsUsageCardMobile_scButtonInstance {
6183
+ width: 100% !important;
6184
+ flex-shrink: 0 !important;
6185
+ }
6186
+
6187
+ /* src/SC-Plan details card-Mobile/ScPlanDetailsCardMobile.module.css */
6188
+ .ScPlanDetailsCardMobile_scPlanDetailsCardMobile,
6189
+ .ScPlanDetailsCardMobile_scPlanDetailsCardMobile * {
6190
+ box-sizing: border-box;
6191
+ }
6192
+ .ScPlanDetailsCardMobile_scPlanDetailsCardMobile {
6193
+ backdrop-filter: blur(4px);
6194
+ background: var(--alias-surface-base, #101010);
6195
+ border-radius: var(--radius-3xl, 1rem);
6196
+ border: 1px solid var(--alias-border-subtle, #242424);
6197
+ display: flex;
6198
+ flex-direction: column;
6199
+ gap: var(--spacing-3xl, 1rem);
6200
+ align-items: flex-start;
6201
+ padding: var(--spacing-3xl, 1rem);
6202
+ position: relative;
6203
+ width: 100%;
6204
+ }
6205
+ .ScPlanDetailsCardMobile_planHeader {
6206
+ display: flex;
6207
+ gap: var(--spacing-md, 0.5rem);
6208
+ align-items: center;
6209
+ align-self: stretch;
6210
+ flex-shrink: 0;
6211
+ }
6212
+ .ScPlanDetailsCardMobile_headerLeft {
6213
+ display: flex;
6214
+ flex: 1;
6215
+ min-width: 0;
6216
+ gap: var(--gp8, 0.5rem);
6217
+ align-items: center;
6218
+ }
6219
+ .ScPlanDetailsCardMobile_headerIcon {
6220
+ width: 1.5rem !important;
6221
+ height: 1.5rem !important;
6222
+ flex-shrink: 0;
6223
+ }
6224
+ .ScPlanDetailsCardMobile_headerLabel {
6225
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6226
+ font-family: var(--font-family-font-family-body, "Inter", sans-serif);
6227
+ font-size: var(--font-size-font-size-sm, 0.875rem);
6228
+ line-height: var(--line-height-line-height-sm, 1.25rem);
6229
+ font-weight: 400;
6230
+ white-space: nowrap;
6231
+ flex-shrink: 0;
6232
+ }
6233
+ .ScPlanDetailsCardMobile_divider {
6234
+ height: 0;
6235
+ width: 100%;
6236
+ flex-shrink: 0;
6237
+ border-top: 0.5px solid var(--alias-border-divider, #242424);
6238
+ }
6239
+ .ScPlanDetailsCardMobile_planInfo {
6240
+ display: flex;
6241
+ flex-direction: column;
6242
+ gap: var(--spacing-none, 0);
6243
+ align-items: center;
6244
+ justify-content: center;
6245
+ align-self: stretch;
6246
+ flex-shrink: 0;
6247
+ }
6248
+ .ScPlanDetailsCardMobile_planNameRow {
6249
+ display: flex;
6250
+ align-items: center;
6251
+ width: 100%;
6252
+ }
6253
+ .ScPlanDetailsCardMobile_planName {
6254
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6255
+ font-family: var(--font-family-font-family-body, "Inter", sans-serif);
6256
+ font-size: var(--font-size-font-size-lg, 1.125rem);
6257
+ line-height: var(--line-height-line-height-lg, 1.625rem);
6258
+ font-weight: 500;
6259
+ white-space: nowrap;
6260
+ }
6261
+ .ScPlanDetailsCardMobile_dot {
6262
+ width: 1.5rem;
6263
+ height: 1.5rem;
6264
+ position: relative;
6265
+ flex-shrink: 0;
6266
+ display: flex;
6267
+ align-items: center;
6268
+ justify-content: center;
6269
+ }
6270
+ .ScPlanDetailsCardMobile_dot::after {
6271
+ content: "";
6272
+ width: 4px;
6273
+ height: 4px;
6274
+ border-radius: var(--radius-full, 999px);
6275
+ background: var(--alias-text-and-icons-tertiary, #9e9e9e);
6276
+ }
6277
+ .ScPlanDetailsCardMobile_planPrice {
6278
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6279
+ font-family: var(--font-family-font-family-body, "Inter", sans-serif);
6280
+ font-size: var(--font-size-font-size-sm, 0.875rem);
6281
+ line-height: var(--line-height-line-height-sm, 1.25rem);
6282
+ font-weight: 500;
6283
+ width: 100%;
6284
+ }
6285
+ .ScPlanDetailsCardMobile_scBadgesInstance {
6286
+ flex-shrink: 0 !important;
6287
+ }
6288
+ .ScPlanDetailsCardMobile_scButtonInstance {
6289
+ width: 100% !important;
6290
+ flex-shrink: 0 !important;
6291
+ }