mediaembed.css 514 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. .ck-content .media {
  6. /* Don't allow floated content overlap the media.
  7. https://github.com/ckeditor/ckeditor5-media-embed/issues/53 */
  8. clear: both;
  9. /* Make sure there is some space between the content and the media. */
  10. margin: 1em 0;
  11. /* Make sure media is not overriden with Bootstrap default `flex` value.
  12. See: https://github.com/ckeditor/ckeditor5/issues/1373. */
  13. display: block;
  14. }