@swnat/ckeditor-custom-build
Version:
The development environment of CKEditor 5 – the best browser-based rich text editor.
20 lines (17 loc) • 471 B
CSS
/*
* Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
/**
* Implements rounded corner interface for .ck-rounded-corners class.
*
* @see $ck-border-radius
*/
@define-mixin ck-rounded-corners {
border-radius: 0;
@nest .ck-rounded-corners &,
&.ck-rounded-corners {
border-radius: var(--ck-border-radius);
@mixin-content;
}
}