1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- @import "../../themes/ionic.globals";
-
- // Range
- // --------------------------------------------------
-
- .item-range .item-inner {
- overflow: visible;
-
- width: 100%;
- }
-
- .item-range .input-wrapper {
- overflow: visible;
-
- flex-direction: column;
-
- width: 100%;
- }
-
- .item-range ion-range {
- width: 100%;
- }
-
- .item-range ion-range ion-label {
- align-self: center;
- }
-
- ion-range {
- position: relative;
- display: flex;
-
- align-items: center;
- }
-
- ion-range ion-label {
- flex: initial;
- }
-
- ion-range ion-icon {
- min-height: 2.4rem;
-
- font-size: 2.4rem;
- line-height: 1;
- }
-
- .range-slider {
- position: relative;
-
- flex: 1;
-
- cursor: pointer;
- }
|