修复窗口在`较小`模式下最小化/关闭按钮不居中的问题
parent
91ff7b658a
commit
6606edafb9
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
- 修复使用全局快捷键还原窗口时,窗口没有获取焦点的问题
|
- 修复使用全局快捷键还原窗口时,窗口没有获取焦点的问题
|
||||||
- 修复我的列表搜索对最后一个字符的匹配问题
|
- 修复我的列表搜索对最后一个字符的匹配问题
|
||||||
|
- 修复窗口在`较小`模式下最小化/关闭按钮不居中的问题
|
||||||
|
|
||||||
### 优化
|
### 优化
|
||||||
|
|
||||||
|
|
|
@ -147,7 +147,7 @@ export default {
|
||||||
height: @control-btn-width;
|
height: @control-btn-width;
|
||||||
background: none;
|
background: none;
|
||||||
border: none;
|
border: none;
|
||||||
// display: flex;
|
display: flex;
|
||||||
// justify-content: center;
|
// justify-content: center;
|
||||||
// align-items: center;
|
// align-items: center;
|
||||||
outline: none;
|
outline: none;
|
||||||
|
|
|
@ -183,6 +183,7 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
|
display: flex;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: @control-btn-width;
|
width: @control-btn-width;
|
||||||
height: @control-btn-width;
|
height: @control-btn-width;
|
||||||
|
|
Loading…
Reference in New Issue