Browse Source

fix(mobile): incorrect padding between the bullet marker and the content boundary on mobile

charlie 2 years ago
parent
commit
d97d200b05
1 changed files with 2 additions and 4 deletions
  1. 2 4
      src/main/frontend/components/block.css

+ 2 - 4
src/main/frontend/components/block.css

@@ -201,12 +201,10 @@
 }
 
 .block-control-wrap {
-  height: 24px;
-  min-width: 44px;
-  margin-top: 0;
+  @apply h-[24px] mt-0 pr-[6px];
 
   &.is-order-list {
-    @apply relative right-[3px] mr-0;
+    @apply relative right-[3px] mr-0 pr-0;
   }
 }