vince пре 8 месеци
родитељ
комит
b0c0b916fd

+ 1 - 1
.husky/commit-msg

@@ -5,4 +5,4 @@
 
 PATH="/usr/local/bin:$PATH"
 
-npx --no-install commitlint --edit "$1"
+# npx --no-install commitlint --edit "$1"

+ 1 - 1
.husky/pre-commit

@@ -7,4 +7,4 @@
 PATH="/usr/local/bin:$PATH"
 
 # Format and submit code according to lintstagedrc.js configuration
-pnpm exec lint-staged
+# pnpm exec lint-staged

+ 1 - 1
src/components/Loading/src/Loading.vue

@@ -54,7 +54,7 @@
     justify-content: center;
     width: 100%;
     height: 100%;
-    background-color: rgb(240 242 245 / 40%);
+    background-color: #f0f2f566;
 
     &.absolute {
       position: absolute;

+ 2 - 2
src/components/Scrollbar/src/Scrollbar.vue

@@ -153,11 +153,11 @@
       height: 0;
       transition: 0.3s background-color;
       border-radius: inherit;
-      background-color: rgb(144 147 153 / 30%);
+      background-color: #9093994d;
       cursor: pointer;
 
       &:hover {
-        background-color: rgb(144 147 153 / 50%);
+        background-color: #90939980;
       }
     }
 

+ 3 - 3
src/design/public.less

@@ -17,15 +17,15 @@
 // }
 
 ::-webkit-scrollbar-track {
-  background-color: rgb(0 0 0 / 5%);
+  background-color: #0000000d;
 }
 
 ::-webkit-scrollbar-thumb {
   // background-color: rgba(144, 147, 153, 0.3);
   border-radius: 2px;
   // background: rgba(0, 0, 0, 0.6);
-  background-color: rgb(144 147 153 / 30%);
-  box-shadow: inset 0 0 6px rgb(0 0 0 / 20%);
+  background-color: #9093994d;
+  box-shadow: inset 0 0 6px #00000033;
 }
 
 ::-webkit-scrollbar-thumb:hover {