Performance issues on Safari
See original GitHub issueComposite paint
is taking 700ms when showing an answer for some reason. Chrome and FF are instant
Issue Analytics
- State:
- Created 5 years ago
- Comments:21 (13 by maintainers)
Top Results From Across the Web
Safari Running Slow on Mac? 8 Possible Causes and Fixes
Safari could be slow because you're using an outdated version of Safari. The cache might be overworked, or you might be facing network...
Read more >Safari and super slow after Big Sur update - Apple Developer
Each time that umount is stuck and Safari is non-responsive, Time Machine was failing to access a disk over the network.
Read more >Safari slow on Ventura fixed - CleanMyMac X
Safari slow fixes · 1. Check your internet speed · 2. Check Safari Servers · 3. Clear cache and cookie buildup · 4....
Read more >Why Is Safari So Slow? Top Fixes to Speed up Browsing!
Part 1. Why Is Safari So Slow on Mac and How to Fix It? · There are too much data and cache on...
Read more >19 Fixes Safari Running Slow on Mac (Ventura Updated)
How Do I Fix Slow Safari on My Mac! The Complete Solutions · 1. Make Sure the Automatic Proxy Detection is Unchecked ·...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@atomiks @fejes713 Like some of you already commented, this appears to be an issue with the layout and rendering (not with the JavaScript), so I started fiddling with the CSS. I don’t really know CSS well, but removing
transform: rotateX(180deg)
in <samp>Question.scss</samp> solved the problem.https://github.com/fejes713/30-seconds-of-interviews/blob/ca96d0f37a2c42be4cbb12dcdecfa84ede3230f3/website/css/components/Question.scss#L95-L99
Before (slow)
After (fast)
I added
color: red
just for visual feedback. 😄