Преглед изворни кода

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;
 	}
 }