And here you can set different breakpoints. Default you're working in is the star breakpoint, then you have 991, 767, 479. If you need more breakpoints, you can add them on the top left and Edit Breakpoints.
Now when you select a different breakpoint, the blue changes you've made to your main breakpoint with the star will turn into orange, knowing that you can overwrite them specifically for that new breakpoint.
I apologize if I didn’t explain myself clearly earlier—that’s on me. Here’s the issue I’m facing: When I set the logo width to 70px for the base layout, and then adjust it to 60px for the iPad breakpoint (767px), the logo doesn’t retain the 70px width for the base layout. Instead, it adopts the 60px width I set for the iPad breakpoint. To address this, I tried using clamp(3rem, 0.956vw + 2.694rem, 4rem) instead of fixed pixel values for the logo width, but it doesn’t seem to work as intended. How do you handle logo resizing across different breakpoints?