@rovula/ui 0.0.74 → 0.0.76

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.
@@ -1041,6 +1041,9 @@ input[type=number] {
1041
1041
  .cursor-default{
1042
1042
  cursor: default;
1043
1043
  }
1044
+ .cursor-not-allowed{
1045
+ cursor: not-allowed;
1046
+ }
1044
1047
  .cursor-pointer{
1045
1048
  cursor: pointer;
1046
1049
  }
@@ -1052,6 +1055,9 @@ input[type=number] {
1052
1055
  -moz-user-select: none;
1053
1056
  user-select: none;
1054
1057
  }
1058
+ .resize-y{
1059
+ resize: vertical;
1060
+ }
1055
1061
  .resize{
1056
1062
  resize: both;
1057
1063
  }
@@ -3062,6 +3068,12 @@ input[type=number] {
3062
3068
  .pr-xxl{
3063
3069
  padding-right: var(--spacing-spacing-xxl);
3064
3070
  }
3071
+ .pt-2{
3072
+ padding-top: 0.5rem;
3073
+ }
3074
+ .pt-4{
3075
+ padding-top: 1rem;
3076
+ }
3065
3077
  .text-left{
3066
3078
  text-align: left;
3067
3079
  }
@@ -3806,6 +3818,24 @@ input[type=number] {
3806
3818
  line-height: var(--button-button-ms-line-height, 22px);
3807
3819
  font-weight: var(--button-button-ms-weight, 700);
3808
3820
  }
3821
+ .ui-scrollbar::-webkit-scrollbar {
3822
+ height: 6px;
3823
+ width: 6px;
3824
+ background: rgba(0, 0, 0, 0.08);
3825
+ }
3826
+ .ui-scrollbar::-webkit-scrollbar-thumb {
3827
+ border-radius: 6px;
3828
+ background: rgba(121, 141, 150, 0.48);
3829
+ width: 6px;
3830
+ }
3831
+ .ui-scrollbar::-webkit-scrollbar-thumb:hover {
3832
+ background: rgba(251, 252, 253, 0.48);
3833
+ cursor: pointer;
3834
+ }
3835
+ .ui-scrollbar::-webkit-scrollbar-corner {
3836
+ display: none;
3837
+ /* background: transparent; */
3838
+ }
3809
3839
  .placeholder\:text-input-default-text::-moz-placeholder{
3810
3840
  --tw-text-opacity: 1;
3811
3841
  color: color-mix(in srgb, var(--input-color-default-text) calc(100% * var(--tw-text-opacity, 1)), transparent);