@itcase/ui 1.3.3 → 1.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -8,6 +8,13 @@
|
|
|
8
8
|
}
|
|
9
9
|
.image {
|
|
10
10
|
&_horizontal-align {
|
|
11
|
+
&_left {
|
|
12
|
+
^^&__wrapper {
|
|
13
|
+
width: 100%;
|
|
14
|
+
display: flex;
|
|
15
|
+
justify-content: flex-start;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
11
18
|
&_center {
|
|
12
19
|
^^&__wrapper {
|
|
13
20
|
width: 100%;
|
|
@@ -15,6 +22,13 @@
|
|
|
15
22
|
justify-content: center;
|
|
16
23
|
}
|
|
17
24
|
}
|
|
25
|
+
&_right {
|
|
26
|
+
^^&__wrapper {
|
|
27
|
+
width: 100%;
|
|
28
|
+
display: flex;
|
|
29
|
+
justify-content: flex-end;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
18
32
|
}
|
|
19
33
|
}
|
|
20
34
|
.image {
|
|
@@ -123,6 +137,13 @@
|
|
|
123
137
|
}
|
|
124
138
|
.image {
|
|
125
139
|
&_vertical-align {
|
|
140
|
+
&_top {
|
|
141
|
+
^^&__wrapper {
|
|
142
|
+
height: 100%;
|
|
143
|
+
display: flex;
|
|
144
|
+
align-items: flex-start;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
126
147
|
&_center {
|
|
127
148
|
^^&__wrapper {
|
|
128
149
|
height: 100%;
|
|
@@ -130,5 +151,12 @@
|
|
|
130
151
|
align-items: center;
|
|
131
152
|
}
|
|
132
153
|
}
|
|
154
|
+
&_bottom {
|
|
155
|
+
^^&__wrapper {
|
|
156
|
+
height: 100%;
|
|
157
|
+
display: flex;
|
|
158
|
+
align-items: flex-end;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
133
161
|
}
|
|
134
162
|
}
|