@streamoid/ui 0.4.2 → 0.4.4
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 +539 -0
- package/dist/index.d.mts +110 -5
- package/dist/index.d.ts +110 -5
- package/dist/index.js +908 -448
- package/dist/index.mjs +883 -415
- package/package.json +8 -8
package/dist/index.css
CHANGED
|
@@ -3442,6 +3442,11 @@
|
|
|
3442
3442
|
position: relative;
|
|
3443
3443
|
cursor: pointer;
|
|
3444
3444
|
}
|
|
3445
|
+
.ScSidebarMenu_scSidebarMenu > :first-child {
|
|
3446
|
+
width: 1.25rem;
|
|
3447
|
+
height: 1.25rem;
|
|
3448
|
+
flex-shrink: 0;
|
|
3449
|
+
}
|
|
3445
3450
|
.ScSidebarMenu_content {
|
|
3446
3451
|
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
3447
3452
|
text-align: left;
|
|
@@ -3607,6 +3612,540 @@
|
|
|
3607
3612
|
flex: unset;
|
|
3608
3613
|
}
|
|
3609
3614
|
|
|
3615
|
+
/* src/SC-Artifax-Sidebar/ScArtifaxSidebar.module.css */
|
|
3616
|
+
.ScArtifaxSidebar_scArtifaxSidebar,
|
|
3617
|
+
.ScArtifaxSidebar_scArtifaxSidebar * {
|
|
3618
|
+
box-sizing: border-box;
|
|
3619
|
+
}
|
|
3620
|
+
.ScArtifaxSidebar_scArtifaxSidebar {
|
|
3621
|
+
display: flex;
|
|
3622
|
+
align-items: center;
|
|
3623
|
+
height: 100%;
|
|
3624
|
+
flex-shrink: 0;
|
|
3625
|
+
}
|
|
3626
|
+
.ScArtifaxSidebar_scArtifaxSidebar.ScArtifaxSidebar_variantExpanded {
|
|
3627
|
+
padding: var(--spacing-3xl, 1rem);
|
|
3628
|
+
}
|
|
3629
|
+
.ScArtifaxSidebar_container {
|
|
3630
|
+
background-color: var(--alias-surface-base, #101010);
|
|
3631
|
+
display: flex;
|
|
3632
|
+
flex-direction: column;
|
|
3633
|
+
position: relative;
|
|
3634
|
+
height: 100%;
|
|
3635
|
+
flex-shrink: 0;
|
|
3636
|
+
padding: var(--spacing-md, 0.5rem);
|
|
3637
|
+
gap: var(--spacing-xxs, 0.125rem);
|
|
3638
|
+
}
|
|
3639
|
+
.ScArtifaxSidebar_container.ScArtifaxSidebar_expanded {
|
|
3640
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
3641
|
+
width: 16rem;
|
|
3642
|
+
}
|
|
3643
|
+
.ScArtifaxSidebar_container.ScArtifaxSidebar_collapsed {
|
|
3644
|
+
align-items: center;
|
|
3645
|
+
width: 3.5rem;
|
|
3646
|
+
}
|
|
3647
|
+
.ScArtifaxSidebar_borderOverlayExpanded {
|
|
3648
|
+
position: absolute;
|
|
3649
|
+
inset: 0;
|
|
3650
|
+
pointer-events: none;
|
|
3651
|
+
border: 1px solid var(--alias-border-subtle, #242424);
|
|
3652
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
3653
|
+
}
|
|
3654
|
+
.ScArtifaxSidebar_borderOverlayCollapsed {
|
|
3655
|
+
position: absolute;
|
|
3656
|
+
inset: 0;
|
|
3657
|
+
pointer-events: none;
|
|
3658
|
+
border-right: 1px solid var(--alias-border-subtle, #242424);
|
|
3659
|
+
}
|
|
3660
|
+
.ScArtifaxSidebar_body {
|
|
3661
|
+
display: flex;
|
|
3662
|
+
flex-direction: column;
|
|
3663
|
+
flex: 1 1 0;
|
|
3664
|
+
min-height: 0;
|
|
3665
|
+
width: 100%;
|
|
3666
|
+
overflow-y: auto;
|
|
3667
|
+
overflow-x: hidden;
|
|
3668
|
+
gap: var(--spacing-xxs, 0.125rem);
|
|
3669
|
+
}
|
|
3670
|
+
.ScArtifaxSidebar_bodyCollapsed {
|
|
3671
|
+
align-items: center;
|
|
3672
|
+
}
|
|
3673
|
+
.ScArtifaxSidebar_logoUnitExpanded {
|
|
3674
|
+
display: flex;
|
|
3675
|
+
align-items: center;
|
|
3676
|
+
padding: var(--spacing-md, 0.5rem);
|
|
3677
|
+
width: 100%;
|
|
3678
|
+
flex-shrink: 0;
|
|
3679
|
+
}
|
|
3680
|
+
.ScArtifaxSidebar_logoUnitCollapsed {
|
|
3681
|
+
display: flex;
|
|
3682
|
+
align-items: center;
|
|
3683
|
+
justify-content: center;
|
|
3684
|
+
padding: var(--spacing-md, 0.5rem);
|
|
3685
|
+
width: 3rem;
|
|
3686
|
+
height: 3rem;
|
|
3687
|
+
flex-shrink: 0;
|
|
3688
|
+
}
|
|
3689
|
+
.ScArtifaxSidebar_sectionContainer {
|
|
3690
|
+
display: flex;
|
|
3691
|
+
flex-direction: column;
|
|
3692
|
+
gap: var(--spacing-xxs, 0.125rem);
|
|
3693
|
+
padding: var(--spacing-md, 0.5rem) 0;
|
|
3694
|
+
width: 100%;
|
|
3695
|
+
flex-shrink: 0;
|
|
3696
|
+
}
|
|
3697
|
+
.ScArtifaxSidebar_sectionContainerCollapsed {
|
|
3698
|
+
display: flex;
|
|
3699
|
+
flex-direction: column;
|
|
3700
|
+
align-items: center;
|
|
3701
|
+
gap: var(--spacing-xxs, 0.125rem);
|
|
3702
|
+
padding: var(--spacing-md, 0.5rem) 0;
|
|
3703
|
+
flex-shrink: 0;
|
|
3704
|
+
}
|
|
3705
|
+
.ScArtifaxSidebar_sectionHeader {
|
|
3706
|
+
display: flex;
|
|
3707
|
+
align-items: center;
|
|
3708
|
+
gap: var(--spacing-md, 0.5rem);
|
|
3709
|
+
padding: var(--spacing-xs, 0.25rem) var(--spacing-md, 0.5rem);
|
|
3710
|
+
background: transparent;
|
|
3711
|
+
border: none;
|
|
3712
|
+
cursor: pointer;
|
|
3713
|
+
width: 100%;
|
|
3714
|
+
text-align: left;
|
|
3715
|
+
height: 1.75rem;
|
|
3716
|
+
}
|
|
3717
|
+
.ScArtifaxSidebar_sectionHeader:disabled {
|
|
3718
|
+
cursor: default;
|
|
3719
|
+
}
|
|
3720
|
+
.ScArtifaxSidebar_sectionLabel {
|
|
3721
|
+
flex: 1 1 0;
|
|
3722
|
+
min-width: 0;
|
|
3723
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
3724
|
+
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
3725
|
+
font-size: 0.625rem;
|
|
3726
|
+
line-height: 1.25rem;
|
|
3727
|
+
letter-spacing: 1px;
|
|
3728
|
+
text-transform: uppercase;
|
|
3729
|
+
font-weight: 400;
|
|
3730
|
+
overflow: hidden;
|
|
3731
|
+
text-overflow: ellipsis;
|
|
3732
|
+
white-space: nowrap;
|
|
3733
|
+
}
|
|
3734
|
+
.ScArtifaxSidebar_sectionChevron {
|
|
3735
|
+
width: 1rem;
|
|
3736
|
+
height: 1rem;
|
|
3737
|
+
flex-shrink: 0;
|
|
3738
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
3739
|
+
}
|
|
3740
|
+
.ScArtifaxSidebar_switchAppRow {
|
|
3741
|
+
display: flex;
|
|
3742
|
+
align-items: center;
|
|
3743
|
+
padding: var(--spacing-md, 0.5rem) var(--spacing-xl, 0.75rem);
|
|
3744
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
3745
|
+
cursor: pointer;
|
|
3746
|
+
height: 2.5rem;
|
|
3747
|
+
width: 100%;
|
|
3748
|
+
flex-shrink: 0;
|
|
3749
|
+
background: transparent;
|
|
3750
|
+
border: none;
|
|
3751
|
+
text-align: left;
|
|
3752
|
+
}
|
|
3753
|
+
.ScArtifaxSidebar_switchAppRow:hover {
|
|
3754
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
3755
|
+
}
|
|
3756
|
+
.ScArtifaxSidebar_switchAppIconBox {
|
|
3757
|
+
width: 2rem;
|
|
3758
|
+
height: 2rem;
|
|
3759
|
+
display: flex;
|
|
3760
|
+
align-items: center;
|
|
3761
|
+
justify-content: center;
|
|
3762
|
+
flex-shrink: 0;
|
|
3763
|
+
}
|
|
3764
|
+
.ScArtifaxSidebar_switchAppIconBox > * {
|
|
3765
|
+
width: 1.75rem;
|
|
3766
|
+
height: 1.75rem;
|
|
3767
|
+
}
|
|
3768
|
+
.ScArtifaxSidebar_switchAppLabel {
|
|
3769
|
+
flex: 1 1 0;
|
|
3770
|
+
min-width: 0;
|
|
3771
|
+
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
3772
|
+
font-size: 0.875rem;
|
|
3773
|
+
font-weight: 400;
|
|
3774
|
+
line-height: 1.25rem;
|
|
3775
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
3776
|
+
margin-left: var(--spacing-md, 0.5rem);
|
|
3777
|
+
overflow: hidden;
|
|
3778
|
+
text-overflow: ellipsis;
|
|
3779
|
+
white-space: nowrap;
|
|
3780
|
+
}
|
|
3781
|
+
.ScArtifaxSidebar_switchAppRowCollapsed {
|
|
3782
|
+
display: flex;
|
|
3783
|
+
align-items: center;
|
|
3784
|
+
justify-content: center;
|
|
3785
|
+
padding: var(--spacing-md, 0.5rem);
|
|
3786
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
3787
|
+
background: transparent;
|
|
3788
|
+
border: none;
|
|
3789
|
+
cursor: pointer;
|
|
3790
|
+
width: 2.5rem;
|
|
3791
|
+
height: 2.5rem;
|
|
3792
|
+
flex-shrink: 0;
|
|
3793
|
+
}
|
|
3794
|
+
.ScArtifaxSidebar_switchAppRowCollapsed:hover {
|
|
3795
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
3796
|
+
}
|
|
3797
|
+
.ScArtifaxSidebar_switchAppRowCollapsed > * {
|
|
3798
|
+
width: 1.75rem;
|
|
3799
|
+
height: 1.75rem;
|
|
3800
|
+
}
|
|
3801
|
+
.ScArtifaxSidebar_profileRow {
|
|
3802
|
+
display: flex;
|
|
3803
|
+
width: 100%;
|
|
3804
|
+
align-items: center;
|
|
3805
|
+
gap: var(--spacing-md, 0.5rem);
|
|
3806
|
+
padding: var(--spacing-md, 0.5rem) var(--spacing-xl, 0.75rem);
|
|
3807
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
3808
|
+
cursor: pointer;
|
|
3809
|
+
flex-shrink: 0;
|
|
3810
|
+
background: transparent;
|
|
3811
|
+
border: none;
|
|
3812
|
+
text-align: left;
|
|
3813
|
+
}
|
|
3814
|
+
.ScArtifaxSidebar_profileRow:hover {
|
|
3815
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
3816
|
+
}
|
|
3817
|
+
.ScArtifaxSidebar_profileRowCollapsed {
|
|
3818
|
+
display: flex;
|
|
3819
|
+
align-items: center;
|
|
3820
|
+
justify-content: center;
|
|
3821
|
+
padding: var(--spacing-md, 0.5rem);
|
|
3822
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
3823
|
+
cursor: pointer;
|
|
3824
|
+
flex-shrink: 0;
|
|
3825
|
+
background: transparent;
|
|
3826
|
+
border: none;
|
|
3827
|
+
width: 3rem;
|
|
3828
|
+
height: 3rem;
|
|
3829
|
+
}
|
|
3830
|
+
.ScArtifaxSidebar_profileRowCollapsed:hover {
|
|
3831
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
3832
|
+
}
|
|
3833
|
+
.ScArtifaxSidebar_profileAvatar {
|
|
3834
|
+
width: 2rem;
|
|
3835
|
+
height: 2rem;
|
|
3836
|
+
border-radius: var(--radius-full, 999px);
|
|
3837
|
+
overflow: hidden;
|
|
3838
|
+
flex-shrink: 0;
|
|
3839
|
+
display: flex;
|
|
3840
|
+
align-items: center;
|
|
3841
|
+
justify-content: center;
|
|
3842
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
3843
|
+
}
|
|
3844
|
+
.ScArtifaxSidebar_profileAvatar > img {
|
|
3845
|
+
width: 100%;
|
|
3846
|
+
height: 100%;
|
|
3847
|
+
object-fit: cover;
|
|
3848
|
+
}
|
|
3849
|
+
.ScArtifaxSidebar_profileInfo {
|
|
3850
|
+
flex: 1 1 0;
|
|
3851
|
+
min-width: 0;
|
|
3852
|
+
display: flex;
|
|
3853
|
+
flex-direction: column;
|
|
3854
|
+
}
|
|
3855
|
+
.ScArtifaxSidebar_profileName {
|
|
3856
|
+
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
3857
|
+
font-size: 0.875rem;
|
|
3858
|
+
font-weight: 500;
|
|
3859
|
+
line-height: 1.25rem;
|
|
3860
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
3861
|
+
overflow: hidden;
|
|
3862
|
+
text-overflow: ellipsis;
|
|
3863
|
+
white-space: nowrap;
|
|
3864
|
+
}
|
|
3865
|
+
.ScArtifaxSidebar_profileSubtitle {
|
|
3866
|
+
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
3867
|
+
font-size: 0.75rem;
|
|
3868
|
+
font-weight: 400;
|
|
3869
|
+
line-height: 1.125rem;
|
|
3870
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
3871
|
+
overflow: hidden;
|
|
3872
|
+
text-overflow: ellipsis;
|
|
3873
|
+
white-space: nowrap;
|
|
3874
|
+
}
|
|
3875
|
+
.ScArtifaxSidebar_creditWarningSlot {
|
|
3876
|
+
padding: var(--spacing-md, 0.5rem) 0;
|
|
3877
|
+
width: 100%;
|
|
3878
|
+
flex-shrink: 0;
|
|
3879
|
+
display: flex;
|
|
3880
|
+
align-items: center;
|
|
3881
|
+
justify-content: center;
|
|
3882
|
+
}
|
|
3883
|
+
.ScArtifaxSidebar_footerExpanded {
|
|
3884
|
+
display: flex;
|
|
3885
|
+
align-items: center;
|
|
3886
|
+
gap: var(--spacing-xs, 0.25rem);
|
|
3887
|
+
padding: var(--spacing-xs, 0.25rem) var(--spacing-xs, 0.25rem) var(--spacing-xs, 0.25rem) var(--spacing-xl, 0.75rem);
|
|
3888
|
+
width: 100%;
|
|
3889
|
+
flex-shrink: 0;
|
|
3890
|
+
}
|
|
3891
|
+
.ScArtifaxSidebar_footerVersion {
|
|
3892
|
+
flex: 1 1 0;
|
|
3893
|
+
min-width: 0;
|
|
3894
|
+
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
3895
|
+
font-size: 0.75rem;
|
|
3896
|
+
font-weight: 400;
|
|
3897
|
+
line-height: 1.125rem;
|
|
3898
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
3899
|
+
overflow: hidden;
|
|
3900
|
+
text-overflow: ellipsis;
|
|
3901
|
+
white-space: nowrap;
|
|
3902
|
+
}
|
|
3903
|
+
.ScArtifaxSidebar_footerToggle {
|
|
3904
|
+
display: flex;
|
|
3905
|
+
align-items: center;
|
|
3906
|
+
justify-content: center;
|
|
3907
|
+
padding: var(--spacing-md, 0.5rem);
|
|
3908
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
3909
|
+
background: transparent;
|
|
3910
|
+
border: none;
|
|
3911
|
+
cursor: pointer;
|
|
3912
|
+
flex-shrink: 0;
|
|
3913
|
+
}
|
|
3914
|
+
.ScArtifaxSidebar_footerToggle:hover {
|
|
3915
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
3916
|
+
}
|
|
3917
|
+
.ScArtifaxSidebar_footerToggle > * {
|
|
3918
|
+
width: 1.5rem;
|
|
3919
|
+
height: 1.5rem;
|
|
3920
|
+
}
|
|
3921
|
+
.ScArtifaxSidebar_footerCollapsed {
|
|
3922
|
+
display: flex;
|
|
3923
|
+
flex-direction: column;
|
|
3924
|
+
align-items: center;
|
|
3925
|
+
gap: var(--spacing-xl, 0.75rem);
|
|
3926
|
+
padding: var(--spacing-md, 0.5rem);
|
|
3927
|
+
width: 100%;
|
|
3928
|
+
flex-shrink: 0;
|
|
3929
|
+
}
|
|
3930
|
+
.ScArtifaxSidebar_footerVersionCenter {
|
|
3931
|
+
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
3932
|
+
font-size: 0.75rem;
|
|
3933
|
+
font-weight: 400;
|
|
3934
|
+
line-height: 1.125rem;
|
|
3935
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
3936
|
+
text-align: center;
|
|
3937
|
+
}
|
|
3938
|
+
.ScArtifaxSidebar_placeholderIcon {
|
|
3939
|
+
width: 1.25rem;
|
|
3940
|
+
height: 1.25rem;
|
|
3941
|
+
flex-shrink: 0;
|
|
3942
|
+
display: inline-flex;
|
|
3943
|
+
align-items: center;
|
|
3944
|
+
justify-content: center;
|
|
3945
|
+
}
|
|
3946
|
+
.ScArtifaxSidebar_placeholderIcon::before {
|
|
3947
|
+
content: "";
|
|
3948
|
+
width: 0.625rem;
|
|
3949
|
+
height: 0.625rem;
|
|
3950
|
+
border: 1px dashed var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
3951
|
+
border-radius: var(--radius-full, 999px);
|
|
3952
|
+
}
|
|
3953
|
+
|
|
3954
|
+
/* src/SC-Guide/ScGuide.module.css */
|
|
3955
|
+
.ScGuide_scGuide,
|
|
3956
|
+
.ScGuide_scGuide * {
|
|
3957
|
+
box-sizing: border-box;
|
|
3958
|
+
}
|
|
3959
|
+
.ScGuide_scGuide {
|
|
3960
|
+
background-color: var(--alias-surface-subtleraised, #1f1f1f);
|
|
3961
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
3962
|
+
padding: var(--spacing-4xl, 1.125rem);
|
|
3963
|
+
display: flex;
|
|
3964
|
+
flex-direction: column;
|
|
3965
|
+
align-items: center;
|
|
3966
|
+
justify-content: center;
|
|
3967
|
+
gap: var(--spacing-3xl, 1rem);
|
|
3968
|
+
width: 16.3125rem;
|
|
3969
|
+
position: relative;
|
|
3970
|
+
}
|
|
3971
|
+
.ScGuide_header {
|
|
3972
|
+
display: flex;
|
|
3973
|
+
flex-direction: column;
|
|
3974
|
+
align-items: flex-start;
|
|
3975
|
+
gap: var(--spacing-lg, 0.625rem);
|
|
3976
|
+
width: 100%;
|
|
3977
|
+
word-break: break-word;
|
|
3978
|
+
}
|
|
3979
|
+
.ScGuide_title {
|
|
3980
|
+
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
3981
|
+
font-size: var(--font-size-font-size-md, 1rem);
|
|
3982
|
+
font-weight: 500;
|
|
3983
|
+
line-height: var(--line-height-line-height-md, 1.5rem);
|
|
3984
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
3985
|
+
width: 100%;
|
|
3986
|
+
margin: 0;
|
|
3987
|
+
}
|
|
3988
|
+
.ScGuide_description {
|
|
3989
|
+
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
3990
|
+
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
3991
|
+
font-weight: 400;
|
|
3992
|
+
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
3993
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
3994
|
+
width: 100%;
|
|
3995
|
+
margin: 0;
|
|
3996
|
+
}
|
|
3997
|
+
.ScGuide_actions {
|
|
3998
|
+
display: flex;
|
|
3999
|
+
align-items: center;
|
|
4000
|
+
justify-content: space-between;
|
|
4001
|
+
width: 100%;
|
|
4002
|
+
}
|
|
4003
|
+
.ScGuide_skipButton {
|
|
4004
|
+
background: transparent;
|
|
4005
|
+
border: none;
|
|
4006
|
+
padding: 0;
|
|
4007
|
+
cursor: pointer;
|
|
4008
|
+
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
4009
|
+
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
4010
|
+
font-weight: 400;
|
|
4011
|
+
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
4012
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
4013
|
+
white-space: nowrap;
|
|
4014
|
+
}
|
|
4015
|
+
.ScGuide_skipButton:disabled {
|
|
4016
|
+
cursor: default;
|
|
4017
|
+
opacity: 0.5;
|
|
4018
|
+
}
|
|
4019
|
+
.ScGuide_skipSpacer {
|
|
4020
|
+
visibility: hidden;
|
|
4021
|
+
}
|
|
4022
|
+
.ScGuide_nextButton {
|
|
4023
|
+
background: transparent;
|
|
4024
|
+
border: none;
|
|
4025
|
+
padding: 0;
|
|
4026
|
+
display: inline-flex;
|
|
4027
|
+
align-items: center;
|
|
4028
|
+
cursor: pointer;
|
|
4029
|
+
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
4030
|
+
font-size: var(--font-size-font-size-sm, 0.875rem);
|
|
4031
|
+
font-weight: 400;
|
|
4032
|
+
line-height: var(--line-height-line-height-sm, 1.25rem);
|
|
4033
|
+
white-space: nowrap;
|
|
4034
|
+
}
|
|
4035
|
+
.ScGuide_nextButton:disabled {
|
|
4036
|
+
cursor: default;
|
|
4037
|
+
opacity: 0.5;
|
|
4038
|
+
}
|
|
4039
|
+
.ScGuide_nextLabel {
|
|
4040
|
+
background-image:
|
|
4041
|
+
linear-gradient(
|
|
4042
|
+
74.117deg,
|
|
4043
|
+
#d91536 15.098%,
|
|
4044
|
+
#ee5e3a 84.955%);
|
|
4045
|
+
-webkit-background-clip: text;
|
|
4046
|
+
background-clip: text;
|
|
4047
|
+
color: transparent;
|
|
4048
|
+
-webkit-text-fill-color: transparent;
|
|
4049
|
+
}
|
|
4050
|
+
.ScGuide_nextIcon {
|
|
4051
|
+
display: inline-flex;
|
|
4052
|
+
align-items: center;
|
|
4053
|
+
color: #ee5e3a;
|
|
4054
|
+
}
|
|
4055
|
+
|
|
4056
|
+
/* src/SC-SideBarLogoUnit/ScSideBarLogoUnit.module.css */
|
|
4057
|
+
.ScSideBarLogoUnit_scSideBarLogoUnit,
|
|
4058
|
+
.ScSideBarLogoUnit_scSideBarLogoUnit * {
|
|
4059
|
+
box-sizing: border-box;
|
|
4060
|
+
}
|
|
4061
|
+
.ScSideBarLogoUnit_scSideBarLogoUnit {
|
|
4062
|
+
display: flex;
|
|
4063
|
+
flex-direction: column;
|
|
4064
|
+
align-items: flex-start;
|
|
4065
|
+
width: 100%;
|
|
4066
|
+
padding-bottom: var(--spacing-md, 0.5rem);
|
|
4067
|
+
position: relative;
|
|
4068
|
+
}
|
|
4069
|
+
.ScSideBarLogoUnit_row {
|
|
4070
|
+
display: flex;
|
|
4071
|
+
align-items: center;
|
|
4072
|
+
width: 100%;
|
|
4073
|
+
}
|
|
4074
|
+
.ScSideBarLogoUnit_chip {
|
|
4075
|
+
flex: 1 0 0;
|
|
4076
|
+
display: flex;
|
|
4077
|
+
align-items: center;
|
|
4078
|
+
min-width: 0;
|
|
4079
|
+
background-color: var(--alias-surface-canvas, #0b0b0b);
|
|
4080
|
+
border-radius: var(--radius-xl, 0.75rem);
|
|
4081
|
+
padding: var(--spacing-3xl, 1rem) var(--spacing-xl, 0.75rem) var(--spacing-3xl, 1rem) var(--spacing-3xl, 1rem);
|
|
4082
|
+
margin-right: -0.875rem;
|
|
4083
|
+
border: none;
|
|
4084
|
+
cursor: pointer;
|
|
4085
|
+
text-align: left;
|
|
4086
|
+
font: inherit;
|
|
4087
|
+
color: inherit;
|
|
4088
|
+
}
|
|
4089
|
+
.ScSideBarLogoUnit_chip:disabled,
|
|
4090
|
+
.ScSideBarLogoUnit_chip.ScSideBarLogoUnit_nonInteractive {
|
|
4091
|
+
cursor: default;
|
|
4092
|
+
}
|
|
4093
|
+
.ScSideBarLogoUnit_chip > * {
|
|
4094
|
+
display: inline-flex;
|
|
4095
|
+
align-items: center;
|
|
4096
|
+
flex-shrink: 0;
|
|
4097
|
+
height: 2rem;
|
|
4098
|
+
}
|
|
4099
|
+
.ScSideBarLogoUnit_switch {
|
|
4100
|
+
display: inline-flex;
|
|
4101
|
+
align-items: center;
|
|
4102
|
+
justify-content: center;
|
|
4103
|
+
background-color: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
4104
|
+
border-radius: var(--radius-md, 0.5rem);
|
|
4105
|
+
padding: var(--spacing-sm, 0.375rem);
|
|
4106
|
+
border: none;
|
|
4107
|
+
cursor: pointer;
|
|
4108
|
+
flex-shrink: 0;
|
|
4109
|
+
position: relative;
|
|
4110
|
+
}
|
|
4111
|
+
.ScSideBarLogoUnit_switch:hover {
|
|
4112
|
+
background-color: var(--alias-fill-neutral-neutraltohover, #1f1f1f);
|
|
4113
|
+
}
|
|
4114
|
+
.ScSideBarLogoUnit_switch:disabled {
|
|
4115
|
+
cursor: default;
|
|
4116
|
+
opacity: 0.5;
|
|
4117
|
+
}
|
|
4118
|
+
.ScSideBarLogoUnit_switchIcon {
|
|
4119
|
+
display: inline-flex;
|
|
4120
|
+
align-items: center;
|
|
4121
|
+
justify-content: center;
|
|
4122
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
4123
|
+
}
|
|
4124
|
+
.ScSideBarLogoUnit_scSideBarLogoUnit.ScSideBarLogoUnit_collapsed {
|
|
4125
|
+
width: auto;
|
|
4126
|
+
padding-bottom: 0;
|
|
4127
|
+
align-items: center;
|
|
4128
|
+
}
|
|
4129
|
+
.ScSideBarLogoUnit_collapsedTrigger {
|
|
4130
|
+
display: inline-flex;
|
|
4131
|
+
align-items: center;
|
|
4132
|
+
justify-content: center;
|
|
4133
|
+
background: transparent;
|
|
4134
|
+
border: none;
|
|
4135
|
+
padding: 0;
|
|
4136
|
+
cursor: pointer;
|
|
4137
|
+
flex-shrink: 0;
|
|
4138
|
+
}
|
|
4139
|
+
.ScSideBarLogoUnit_collapsedTrigger:disabled,
|
|
4140
|
+
.ScSideBarLogoUnit_collapsedTrigger.ScSideBarLogoUnit_nonInteractive {
|
|
4141
|
+
cursor: default;
|
|
4142
|
+
}
|
|
4143
|
+
.ScSideBarLogoUnit_collapsedTrigger > * {
|
|
4144
|
+
display: inline-flex;
|
|
4145
|
+
align-items: center;
|
|
4146
|
+
justify-content: center;
|
|
4147
|
+
}
|
|
4148
|
+
|
|
3610
4149
|
/* src/SC-Slider/ScSlider.module.css */
|
|
3611
4150
|
.ScSlider_scSlider,
|
|
3612
4151
|
.ScSlider_scSlider * {
|