Skip to content

Commit

Permalink
docs: centre example loading spinner (#21792)
Browse files Browse the repository at this point in the history
  • Loading branch information
jenjen75 committed Jun 26, 2023
1 parent 3233344 commit f5920ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/schema/src/config/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,18 +214,18 @@ export default defineUntypedSchema({
*
* \@-webkit-keyframes loader {
* 0% {
* -webkit-transform: rotate(0deg);
* -webkit-transform: translate(-50%, -50%) rotate(0deg);
* }
* 100% {
* -webkit-transform: rotate(360deg);
* -webkit-transform: translate(-50%, -50%) rotate(360deg);
* }
* }
* \@keyframes loader {
* 0% {
* transform: rotate(0deg);
* transform: translate(-50%, -50%) rotate(0deg);
* }
* 100% {
* transform: rotate(360deg);
* transform: translate(-50%, -50%) rotate(360deg);
* }
* }
* </style>
Expand Down

0 comments on commit f5920ff

Please sign in to comment.