@element-plus/nightly 0.0.20220113 → 0.0.20220114

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.
@@ -47,6 +47,7 @@ $dropdown-divider-width: 1px !default;
47
47
  color: var(--el-text-color-regular);
48
48
  font-size: var(--el-font-size-base);
49
49
  line-height: 1;
50
+ vertical-align: top;
50
51
 
51
52
  @include e(popper) {
52
53
  @include set-component-css-var('dropdown', $dropdown);
@@ -136,7 +136,10 @@
136
136
 
137
137
  @include e(btns) {
138
138
  padding: 5px 15px 0;
139
- text-align: right;
139
+ display: flex;
140
+ flex-wrap: wrap;
141
+ justify-content: flex-end;
142
+ align-items: center;
140
143
 
141
144
  & button:nth-child(2) {
142
145
  margin-left: 10px;
@@ -3,6 +3,16 @@
3
3
 
4
4
  @include b(space) {
5
5
  display: inline-flex;
6
+ vertical-align: top;
7
+
8
+ @include e(item) {
9
+ display: flex;
10
+ flex-wrap: wrap;
11
+
12
+ & > * {
13
+ flex: 1;
14
+ }
15
+ }
6
16
 
7
17
  @include m(vertical) {
8
18
  flex-direction: column;