Преглед на файлове

add rounded corners and transition

Konstantinos Kaloutas преди 2 години
родител
ревизия
ef7672de6a
променени са 1 файла, в които са добавени 8 реда и са изтрити 4 реда
  1. 8 4
      src/main/frontend/components/container.css

+ 8 - 4
src/main/frontend/components/container.css

@@ -622,12 +622,16 @@ html[data-theme='dark'] {
     @apply relative;
     @apply relative;
     height: 8px;
     height: 8px;
 
 
+    &::after {
+      @apply absolute block w-full rounded;
+      top: 2px;
+      height: 4px;
+      content: " ";
+      transition: background-color 200ms;
+    }
+
     &.drag-over {
     &.drag-over {
       &::after {
       &::after {
-        @apply absolute block w-full;
-        top: 2px;
-        height: 4px;
-        content: " ";
         background-color: var(--ls-active-primary-color);
         background-color: var(--ls-active-primary-color);
       }
       }
     }
     }