38 lines
558 B
CSS
38 lines
558 B
CSS
|
.container {
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.center-container {
|
||
|
text-align: center;
|
||
|
margin: auto;
|
||
|
width: 95%;
|
||
|
padding: 35px;
|
||
|
}
|
||
|
|
||
|
.el-input {
|
||
|
height: 20px;
|
||
|
}
|
||
|
|
||
|
.el-input__inner {
|
||
|
height: 30px;
|
||
|
font-family: Roboto, serif;
|
||
|
font-style: normal;
|
||
|
font-weight: normal;
|
||
|
font-size: 12px;
|
||
|
line-height: 14px;
|
||
|
}
|
||
|
/**宽度修改 */
|
||
|
.el-select {
|
||
|
width: 129px;
|
||
|
}
|
||
|
/* 下面设置右侧按钮居中 */
|
||
|
.el-input__suffix {
|
||
|
top: 6px;
|
||
|
}
|
||
|
.el-input__icon {
|
||
|
line-height: inherit;
|
||
|
}
|
||
|
.el-input__suffix-inner {
|
||
|
display: inline-block;
|
||
|
}
|