CatPtain commited on
Commit
74a4cfb
·
verified ·
1 Parent(s): 6f69cc1

Upload index.vue

Browse files
frontend/src/views/Editor/Thumbnails/index.vue CHANGED
@@ -535,6 +535,8 @@ const copyToClipboard = async (text: string, label: string) => {
535
  </script>
536
 
537
  <style lang="scss" scoped>
 
 
538
  .thumbnails {
539
  border-right: solid 1px $borderColor;
540
  background-color: #fff;
@@ -668,7 +670,7 @@ const copyToClipboard = async (text: string, label: string) => {
668
  transform: scale(1.1);
669
 
670
  .icon {
671
- color: darken($themeColor, 10%);
672
  }
673
  }
674
  }
@@ -805,7 +807,7 @@ const copyToClipboard = async (text: string, label: string) => {
805
  cursor: pointer;
806
 
807
  &:hover {
808
- background-color: darken($themeColor, 10%);
809
  }
810
  }
811
  }
 
535
  </script>
536
 
537
  <style lang="scss" scoped>
538
+ @use 'sass:color';
539
+
540
  .thumbnails {
541
  border-right: solid 1px $borderColor;
542
  background-color: #fff;
 
670
  transform: scale(1.1);
671
 
672
  .icon {
673
+ color: color.adjust($themeColor, $lightness: -10%);
674
  }
675
  }
676
  }
 
807
  cursor: pointer;
808
 
809
  &:hover {
810
+ background-color: color.adjust($themeColor, $lightness: -10%);
811
  }
812
  }
813
  }