@@ -13,6 +13,8 @@ import MediaEmbedUI from './mediaembedui';
import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
import Widget from '@ckeditor/ckeditor5-widget/src/widget';
+import '../theme/mediaembed.css';
+
/**
* The media embed plugin.
*
@@ -0,0 +1,10 @@
+/*
+ * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
+ * For licensing, see LICENSE.md.
+ */
+.ck-content .media {
+ /* Don't allow floated content overlap the media.
+ https://github.com/ckeditor/ckeditor5-media-embed/issues/53 */
+ clear: both;
+}