UNPKG

316 BSCSSView Raw
1/**
2 * @license
3 * Copyright Akveo. All Rights Reserved.
4 * Licensed under the MIT License. See License.txt in the project root for license information.
5 */
6
7@mixin input-shapes() {
8 @each $shape in nb-get-shapes() {
9 &.shape-#{$shape} {
10 border-radius: nb-theme(input-#{$shape}-border-radius);
11 }
12 }
13}