소스 검색

fix apply-colors-dark

ayaka417 3 년 전
부모
커밋
e5097e2715
1개의 변경된 파일9개의 추가작업 그리고 3개의 파일을 삭제
  1. 9 3
      packages/app/src/styles/theme/_apply-colors-dark.scss

+ 9 - 3
packages/app/src/styles/theme/_apply-colors-dark.scss

@@ -114,9 +114,15 @@
   /*
   * Card
   */
-  // .card:not([class*='bg-']):not(.well):not(.card-disabled) {
-  //   @extend .bg-dark;
-  // }
+  .card:not([class*='bg-']):not(.well):not(.card-disabled) {
+    background-color: $dark !important;
+    a,
+    button{
+      @include hover-focus() {
+        background-color: darken($dark, 10%) !important;
+      }
+    }
+  }
 
   // [TODO] GW-3219 modify common color of well in dark theme, then remove below css.
   .card.well {