<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */

@import "@ckeditor/ckeditor5-ui/theme/mixins/_rwd.css";

.ck.ck-media-form {
	display: flex;
	align-items: flex-start;
	flex-direction: row;
	flex-wrap: nowrap;

	&amp; .ck-labeled-field-view {
		display: inline-block;
	}

	&amp; .ck-label {
		display: none;
	}

	@mixin ck-media-phone {
		flex-wrap: wrap;

		&amp; .ck-labeled-field-view {
			flex-basis: 100%;
		}

		&amp; .ck-button {
			flex-basis: 50%;
		}
	}
}
</pre></body></html>