Skip to content

Commit

Permalink
fix spinner on submit action
Browse files Browse the repository at this point in the history
  • Loading branch information
z1haze committed Mar 8, 2023
1 parent 3f621e5 commit 18711dd
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sfcc_dev_console",
"private": true,
"version": "2.2.2",
"version": "2.2.3",
"description": "A Salesforce Commerce Cloud (Demandware) Cartridge for Developers.",
"type": "module",
"contributors": [
Expand Down
13 changes: 13 additions & 0 deletions src/scss/_actions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,17 @@
top: 0;
}
}
}

.spin {
animation: spin 4s linear infinite;
}

@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

0 comments on commit 18711dd

Please sign in to comment.