tangled
alpha
login
or
join now
finxol.io
/
bookmarker
0
fork
atom
A very simple bookmarking webapp
bookmarker.finxol.deno.net/
0
fork
atom
overview
issues
pulls
pipelines
refactor: move spin keyframes
finxol.io
1 month ago
ed5839ec
87d71272
verified
This commit was signed with the committer's
known signature
.
finxol.io
SSH Key Fingerprint:
SHA256:olFE3asYdoBMScuJOt60UxXdJ0RFdGv5kVKrdOtIcPI=
1/1
deploy.yaml
success
11s
+10
-20
3 changed files
expand all
collapse all
unified
split
src
routes
index.css
main.css
new.css
-10
src/routes/index.css
···
43
43
color: oklch(from var(--primary-text) l c h / 0.5);
44
44
}
45
45
46
46
-
.spinner {
47
47
-
animation: spin 1s linear infinite;
48
48
-
}
49
49
-
50
50
-
@keyframes spin {
51
51
-
to {
52
52
-
transform: rotate(360deg);
53
53
-
}
54
54
-
}
55
55
-
56
46
/* Empty state */
57
47
58
48
.empty-state {
+10
src/routes/main.css
···
67
67
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
68
68
}
69
69
}
70
70
+
71
71
+
.spinner {
72
72
+
animation: spin 1s linear infinite;
73
73
+
}
74
74
+
75
75
+
@keyframes spin {
76
76
+
to {
77
77
+
transform: rotate(360deg);
78
78
+
}
79
79
+
}
70
80
}
-10
src/routes/new.css
···
109
109
color: oklch(0.5 0.2 25);
110
110
font-size: 0.85rem;
111
111
}
112
112
-
113
113
-
.spinner {
114
114
-
animation: spin 1s linear infinite;
115
115
-
}
116
116
-
117
117
-
@keyframes spin {
118
118
-
to {
119
119
-
transform: rotate(360deg);
120
120
-
}
121
121
-
}