mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 00:27:41 +08:00
feat(item-option): add shapes (#29636)
This commit is contained in:
@ -45,3 +45,21 @@
|
||||
min-width: initial;
|
||||
height: globals.$ionic-scale-500;
|
||||
}
|
||||
|
||||
// Item Option Shapes
|
||||
// --------------------------------------------------
|
||||
|
||||
/* Round */
|
||||
:host(.item-option-round) {
|
||||
@include globals.border-radius(globals.$ionic-border-radius-300);
|
||||
}
|
||||
|
||||
/* Soft */
|
||||
:host(.item-option-soft) {
|
||||
@include globals.border-radius(globals.$ionic-border-radius-200);
|
||||
}
|
||||
|
||||
/* Rectangular */
|
||||
:host(.item-option-rectangular) {
|
||||
@include globals.border-radius(globals.$ionic-border-radius-0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user