mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
48 lines
645 B
SCSS
48 lines
645 B
SCSS
$item-input-padding: 6px 0 5px 0px;
|
|
|
|
ion-input {
|
|
display: block;
|
|
}
|
|
|
|
focus-holder input {
|
|
position: fixed;
|
|
top: 1px;
|
|
width: 9px;
|
|
left: -9999px;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.scroll-padding.scroll-padding .scroll-content {
|
|
padding-bottom: 1000px;
|
|
}
|
|
|
|
/*ion-input {
|
|
display: block;
|
|
|
|
|
|
position: relative;
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.item-label {
|
|
padding: $item-input-padding;
|
|
}
|
|
|
|
input, textarea {
|
|
width: 100%;
|
|
//font-size: 1.6rem;
|
|
|
|
border-radius: 0;
|
|
|
|
flex: 1 220px;
|
|
@include appearance(none);
|
|
|
|
margin: 0;
|
|
padding-right: 24px;
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
*/
|