| 1234567891011121314151617 |
- /*
- * 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;
- /* Make sure there is some space between the content and the media. */
- margin: 1em 0;
- /* Make sure media is not overriden with Bootstrap default `flex` value.
- See: https://github.com/ckeditor/ckeditor5/issues/1373. */
- display: block;
- }
|