We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ef803b commit 0f3e8f8Copy full SHA for 0f3e8f8
src/renderer/layouts/TitleBar.vue
@@ -82,15 +82,9 @@ Ipc.on('mainWindowUnmaximize',() => {
82
width: 24px;
83
animation: textSizeChange 1s infinite;
84
@keyframes textSizeChange {
85
- 0% {
86
- font-size: 14px;
87
- }
88
- 50% {
89
- font-size: 16px;
90
91
- 100% {
92
93
+ 0% { transform: scale(1); }
+ 50% { transform: scale(1.15); }
+ 100% { transform: scale(1); }
94
}
95
96
0 commit comments