Explorar el Código

线条透明度

李富豪 hace 1 año
padre
commit
9782bd0565
Se han modificado 2 ficheros con 4 adiciones y 2 borrados
  1. 2 1
      app/components/chat.module.scss
  2. 2 1
      app/styles/window.scss

+ 2 - 1
app/components/chat.module.scss

@@ -514,7 +514,8 @@
   padding-top: 10px;
   box-sizing: border-box;
   flex-direction: column;
-  border-top: var(--border-in-light);
+  // 下方线条
+  border-top: 1px solid rgba(255, 255, 255, 0.5);
   box-shadow: var(--card-shadow);
 
   .chat-input-actions {

+ 2 - 1
app/styles/window.scss

@@ -1,6 +1,7 @@
 .window-header {
   padding: 14px 20px;
-  border-bottom: var(--border-in-light);
+  // 上方线条
+  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
   position: relative;
 
   display: flex;