| 1234567891011121314151617181920212223242526272829303132333435 |
- @import "../../themes/ionic.globals";
-
- // List
- // --------------------------------------------------
-
- ion-list-header {
- @include margin(0);
- @include padding(0);
-
- display: flex;
- overflow: hidden;
-
- align-items: center;
- justify-content: space-between;
-
- width: 100%;
- min-height: 4rem;
- }
-
- ion-list {
- @include margin(0);
- @include padding(0);
-
- display: block;
-
- list-style-type: none;
- }
-
- ion-list[inset] {
- overflow: hidden;
-
- transform: translateZ(0);
- }
-
|