Skip to content

Commit c74c7a1

Browse files
Merge branch 'next' into ROU-11586
2 parents 6bd7048 + 7be7c08 commit c74c7a1

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

core/src/css/display.scss

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,23 @@
3737
}
3838
}
3939
}
40+
41+
// Size
42+
// --------------------------------------------------
43+
.ion-full-height {
44+
height: 100% !important;
45+
}
46+
47+
.ion-full-width {
48+
width: 100% !important;
49+
}
50+
51+
// Position
52+
// --------------------------------------------------
53+
.ion-position-absolute {
54+
position: absolute !important;
55+
}
56+
57+
.ion-position-relative {
58+
position: relative !important;
59+
}

core/src/css/flex-utils.scss

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,27 @@
9494
.ion-align-items-baseline {
9595
align-items: baseline !important;
9696
}
97+
98+
// Flex Direction
99+
// --------------------------------------------------
100+
.ion-flex-direction-column {
101+
flex-direction: column !important;
102+
}
103+
104+
.ion-flex-direction-column-reverse {
105+
flex-direction: column-reverse !important;
106+
}
107+
108+
.ion-flex-direction-row {
109+
flex-direction: row !important;
110+
}
111+
112+
.ion-flex-direction-row-reverse {
113+
flex-direction: row-reverse !important;
114+
}
115+
116+
// Flex Container
117+
// --------------------------------------------------
118+
.ion-flex-1 {
119+
flex: 1 !important;
120+
}

0 commit comments

Comments
 (0)