zenkit-css 1.4.0 → 1.4.1

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/zenkit.css CHANGED
@@ -37614,6 +37614,329 @@ mark {
37614
37614
  padding: 1.25rem;
37615
37615
  }
37616
37616
 
37617
+ .box {
37618
+ display: block;
37619
+ }
37620
+
37621
+ .box-flex {
37622
+ display: flex;
37623
+ }
37624
+
37625
+ .box-inline {
37626
+ display: inline-block;
37627
+ }
37628
+
37629
+ .box-inline-flex {
37630
+ display: inline-flex;
37631
+ }
37632
+
37633
+ .box-grid {
37634
+ display: grid;
37635
+ }
37636
+
37637
+ .box-p-0 {
37638
+ padding: 0;
37639
+ }
37640
+
37641
+ .box-p-1 {
37642
+ padding: var(--space-1);
37643
+ }
37644
+
37645
+ .box-p-2 {
37646
+ padding: var(--space-2);
37647
+ }
37648
+
37649
+ .box-p-3 {
37650
+ padding: var(--space-3);
37651
+ }
37652
+
37653
+ .box-p-4 {
37654
+ padding: var(--space-4);
37655
+ }
37656
+
37657
+ .box-p-5 {
37658
+ padding: var(--space-5);
37659
+ }
37660
+
37661
+ .box-p-6 {
37662
+ padding: var(--space-6);
37663
+ }
37664
+
37665
+ .box-p-8 {
37666
+ padding: var(--space-8);
37667
+ }
37668
+
37669
+ .box-p-10 {
37670
+ padding: var(--space-10);
37671
+ }
37672
+
37673
+ .box-p-12 {
37674
+ padding: var(--space-12);
37675
+ }
37676
+
37677
+ .box-m-0 {
37678
+ margin: 0;
37679
+ }
37680
+
37681
+ .box-m-1 {
37682
+ margin: var(--space-1);
37683
+ }
37684
+
37685
+ .box-m-2 {
37686
+ margin: var(--space-2);
37687
+ }
37688
+
37689
+ .box-m-3 {
37690
+ margin: var(--space-3);
37691
+ }
37692
+
37693
+ .box-m-4 {
37694
+ margin: var(--space-4);
37695
+ }
37696
+
37697
+ .box-m-5 {
37698
+ margin: var(--space-5);
37699
+ }
37700
+
37701
+ .box-m-6 {
37702
+ margin: var(--space-6);
37703
+ }
37704
+
37705
+ .box-m-8 {
37706
+ margin: var(--space-8);
37707
+ }
37708
+
37709
+ .box-m-auto {
37710
+ margin: auto;
37711
+ }
37712
+
37713
+ .box-mx-auto {
37714
+ margin-left: auto;
37715
+ margin-right: auto;
37716
+ }
37717
+
37718
+ .box-my-auto {
37719
+ margin-top: auto;
37720
+ margin-bottom: auto;
37721
+ }
37722
+
37723
+ .box-rounded-none {
37724
+ border-radius: 0;
37725
+ }
37726
+
37727
+ .box-rounded-sm {
37728
+ border-radius: var(--radius-sm);
37729
+ }
37730
+
37731
+ .box-rounded {
37732
+ border-radius: var(--radius);
37733
+ }
37734
+
37735
+ .box-rounded-md {
37736
+ border-radius: var(--radius-md);
37737
+ }
37738
+
37739
+ .box-rounded-lg {
37740
+ border-radius: var(--radius-lg);
37741
+ }
37742
+
37743
+ .box-rounded-xl {
37744
+ border-radius: var(--radius-xl);
37745
+ }
37746
+
37747
+ .box-rounded-2xl {
37748
+ border-radius: var(--radius-2xl);
37749
+ }
37750
+
37751
+ .box-rounded-full {
37752
+ border-radius: var(--radius-full);
37753
+ }
37754
+
37755
+ .box-bg-transparent {
37756
+ background-color: transparent;
37757
+ }
37758
+
37759
+ .box-bg-white {
37760
+ background-color: white;
37761
+ }
37762
+
37763
+ .box-bg-black {
37764
+ background-color: black;
37765
+ }
37766
+
37767
+ .box-bg-primary {
37768
+ background-color: var(--primary);
37769
+ }
37770
+
37771
+ .box-bg-secondary {
37772
+ background-color: var(--secondary);
37773
+ }
37774
+
37775
+ .box-bg-surface {
37776
+ background-color: var(--surface);
37777
+ }
37778
+
37779
+ .box-bg-muted {
37780
+ background-color: var(--muted);
37781
+ }
37782
+
37783
+ .box-border {
37784
+ border: 1px solid var(--border);
37785
+ }
37786
+
37787
+ .box-border-none {
37788
+ border: none;
37789
+ }
37790
+
37791
+ .box-border-2 {
37792
+ border-width: 2px;
37793
+ }
37794
+
37795
+ .box-border-primary {
37796
+ border-color: var(--primary);
37797
+ }
37798
+
37799
+ .box-border-muted {
37800
+ border-color: var(--border);
37801
+ }
37802
+
37803
+ .box-shadow-none {
37804
+ box-shadow: none;
37805
+ }
37806
+
37807
+ .box-shadow-sm {
37808
+ box-shadow: var(--shadow-sm);
37809
+ }
37810
+
37811
+ .box-shadow {
37812
+ box-shadow: var(--shadow);
37813
+ }
37814
+
37815
+ .box-shadow-md {
37816
+ box-shadow: var(--shadow-md);
37817
+ }
37818
+
37819
+ .box-shadow-lg {
37820
+ box-shadow: var(--shadow-lg);
37821
+ }
37822
+
37823
+ .box-shadow-xl {
37824
+ box-shadow: var(--shadow-xl);
37825
+ }
37826
+
37827
+ .box-relative {
37828
+ position: relative;
37829
+ }
37830
+
37831
+ .box-absolute {
37832
+ position: absolute;
37833
+ }
37834
+
37835
+ .box-fixed {
37836
+ position: fixed;
37837
+ }
37838
+
37839
+ .box-sticky {
37840
+ position: sticky;
37841
+ }
37842
+
37843
+ .box-overflow-auto {
37844
+ overflow: auto;
37845
+ }
37846
+
37847
+ .box-overflow-hidden {
37848
+ overflow: hidden;
37849
+ }
37850
+
37851
+ .box-overflow-visible {
37852
+ overflow: visible;
37853
+ }
37854
+
37855
+ .box-overflow-scroll {
37856
+ overflow: scroll;
37857
+ }
37858
+
37859
+ .box-w-full {
37860
+ width: 100%;
37861
+ }
37862
+
37863
+ .box-w-screen {
37864
+ width: 100vw;
37865
+ }
37866
+
37867
+ .box-w-auto {
37868
+ width: auto;
37869
+ }
37870
+
37871
+ .box-w-fit {
37872
+ width: fit-content;
37873
+ }
37874
+
37875
+ .box-w-min {
37876
+ width: min-content;
37877
+ }
37878
+
37879
+ .box-w-max {
37880
+ width: max-content;
37881
+ }
37882
+
37883
+ .box-h-full {
37884
+ height: 100%;
37885
+ }
37886
+
37887
+ .box-h-screen {
37888
+ height: 100vh;
37889
+ }
37890
+
37891
+ .box-h-auto {
37892
+ height: auto;
37893
+ }
37894
+
37895
+ .box-h-fit {
37896
+ height: fit-content;
37897
+ }
37898
+
37899
+ .box-min-h-0 {
37900
+ min-height: 0;
37901
+ }
37902
+
37903
+ .box-min-h-full {
37904
+ min-height: 100%;
37905
+ }
37906
+
37907
+ .box-min-h-screen {
37908
+ min-height: 100vh;
37909
+ }
37910
+
37911
+ .box-max-w-full {
37912
+ max-width: 100%;
37913
+ }
37914
+
37915
+ .box-max-w-screen {
37916
+ max-width: 100vw;
37917
+ }
37918
+
37919
+ .box-card {
37920
+ background-color: var(--surface);
37921
+ border: 1px solid var(--border);
37922
+ border-radius: var(--radius-lg);
37923
+ padding: var(--space-4);
37924
+ }
37925
+
37926
+ .box-card-elevated {
37927
+ background-color: var(--surface);
37928
+ border-radius: var(--radius-lg);
37929
+ padding: var(--space-4);
37930
+ box-shadow: var(--shadow-md);
37931
+ }
37932
+
37933
+ [data-theme=dark] .box-bg-white {
37934
+ background-color: var(--gray-900);
37935
+ }
37936
+ [data-theme=dark] .box-bg-black {
37937
+ background-color: white;
37938
+ }
37939
+
37617
37940
  .accordion {
37618
37941
  --accordion-color: var(--text);
37619
37942
  --accordion-bg: transparent;