Skip to content

Commit 090d844

Browse files
committed
fix: type, vbenjs#1347
1 parent 013cb7f commit 090d844

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

index.html

-6
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
left: 50%;
4949
display: flex;
5050
transform: translate3d(-50%, -50%, 0);
51-
transform: translate3d(-50%, -50%, 0);
5251
justify-content: center;
5352
align-items: center;
5453
flex-direction: column;
@@ -111,32 +110,27 @@
111110
top: 0;
112111
right: 0;
113112
animation-delay: 0.4s;
114-
animation-delay: 0.4s;
115113
}
116114

117115
.dot i:nth-child(3) {
118116
right: 0;
119117
bottom: 0;
120118
animation-delay: 0.8s;
121-
animation-delay: 0.8s;
122119
}
123120

124121
.dot i:nth-child(4) {
125122
bottom: 0;
126123
left: 0;
127124
animation-delay: 1.2s;
128-
animation-delay: 1.2s;
129125
}
130126
@keyframes antRotate {
131127
to {
132128
transform: rotate(405deg);
133-
transform: rotate(405deg);
134129
}
135130
}
136131
@keyframes antRotate {
137132
to {
138133
transform: rotate(405deg);
139-
transform: rotate(405deg);
140134
}
141135
}
142136
@keyframes antSpinMove {

src/utils/dateUtil.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import moment from 'moment';
55

66
const DATE_TIME_FORMAT = 'YYYY-MM-DD HH:mm:ss';
7-
const DATE_FORMAT = 'YYYY-MM-DD ';
7+
const DATE_FORMAT = 'YYYY-MM-DD';
88

99
export function formatToDateTime(
1010
date: moment.MomentInput = undefined,

windi.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default defineConfig({
2727
* Used for animation when the element is displayed
2828
* @param maxOutput The larger the maxOutput output, the larger the generated css volume
2929
*/
30-
function createEnterPlugin(maxOutput = 7) {
30+
function createEnterPlugin(maxOutput = 6) {
3131
const createCss = (index: number, d = 'x') => {
3232
const upd = d.toUpperCase();
3333
return {

0 commit comments

Comments
 (0)