mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
25 lines
419 B
SCSS
25 lines
419 B
SCSS
@import "../../themes/ionic.globals";
|
|
|
|
:host {
|
|
@include border-radius(50%);
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
width: var(--size, 32px);
|
|
height: var(--size, 32px);
|
|
|
|
|
|
background: #{ion-color(primary, base)};
|
|
color: #{ion-color(primary, contrast)};
|
|
|
|
font-size: 18px;
|
|
}
|
|
|
|
:host(.ion-color) {
|
|
background: #{current-color(base)};
|
|
color: #{current-color(contrast)};
|
|
}
|