mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
54 lines
797 B
SCSS
54 lines
797 B
SCSS
@import "../../ionic.globals";
|
|
|
|
// FABulous Buttons (Floating Action Button from material)
|
|
// --------------------------------------------------
|
|
|
|
$button-fab-size: 56px !default;
|
|
|
|
|
|
.button-fab {
|
|
position: absolute;
|
|
width: $button-fab-size;
|
|
height: $button-fab-size;
|
|
line-height: $button-fab-size;
|
|
min-width: 0;
|
|
vertical-align: middle;
|
|
|
|
border-radius: 50%;
|
|
background-clip: padding-box;
|
|
|
|
overflow: hidden;
|
|
|
|
transition: .2s linear;
|
|
transition-property: background-color;
|
|
|
|
font-size: 14px;
|
|
|
|
icon {
|
|
flex: 1;
|
|
font-size: 2.8rem;
|
|
}
|
|
|
|
}
|
|
|
|
.button-fab-center {
|
|
left: 50%;
|
|
margin-left: -$button-fab-size / 2;
|
|
}
|
|
|
|
.button-fab-top {
|
|
top: 16px;
|
|
}
|
|
|
|
.button-fab-right {
|
|
right: 16px;
|
|
}
|
|
|
|
.button-fab-bottom {
|
|
bottom: 16px;
|
|
}
|
|
|
|
.button-fab-left {
|
|
left: 16px;
|
|
}
|