-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixed spinner issue #6
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -317,17 +317,18 @@ body { | |||||
} | ||||||
|
||||||
.spinner { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Names in my code may not be clear, but as you can see this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh. Thanks for pointing out my mistakes, I am working to remedy them.
Also, I am not able to understand what you mean by alternating arc size. Do you mean changing the arc size while rotating? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I made the comparison, the same size, the same place on the screen
As you can see yours is moved slightly and doesn't work like the old one |
||||||
z-index: 1000; | ||||||
background-color: #0006; | ||||||
position: fixed; | ||||||
top: 0; | ||||||
left: 0; | ||||||
right: 0; | ||||||
bottom: 0; | ||||||
|
||||||
display: flex; | ||||||
justify-content: center; | ||||||
align-items: center; | ||||||
position:absolute; | ||||||
bottom: 45%; | ||||||
left:45%; | ||||||
|
||||||
border: 10px solid rgba(243, 243, 243, 0.05); | ||||||
border-radius: 50%; | ||||||
border-top: 10px solid #d65a31; | ||||||
border-right: 10px solid #d65a31; | ||||||
border-bottom: 10px solid #d65a31; | ||||||
width: 100px; | ||||||
height: 100px; | ||||||
animation: rotate 2s linear infinite; | ||||||
} | ||||||
|
||||||
.spinner svg { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You left unused code :/ |
||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Committing commented up code isn't a best practise