Parcourir la source

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

Aleksander Nowodzinski il y a 9 ans
Parent
commit
e234484fa9
1 fichiers modifiés avec 6 ajouts et 2 suppressions
  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;
 	}
 }