瀏覽代碼

Mirrored the margin used to visually separate items in the toolbar.

Aleksander Nowodzinski 9 年之前
父節點
當前提交
e234484fa9
共有 1 個文件被更改,包括 6 次插入2 次删除
  1. 6 2
      packages/ckeditor5-theme-lark/theme/components/toolbar.scss

+ 6 - 2
packages/ckeditor5-theme-lark/theme/components/toolbar.scss

@@ -25,7 +25,11 @@
 	}
 
 	// (#11) Separate toolbar items.
-	& > * + * {
-		margin-left: ck-spacing( 'small' );
+	& > * {
+		margin-right: ck-spacing( 'small' );
+	}
+
+	& > *:last-child {
+		margin-right: 0;
 	}
 }