Lessons page: subject slide content padding

The subject slide context uses a 0px padding for left/right of the .subject-slide__content class. The makes highlighting the context sentences prone to accidentally clicking the back navigation button.

the CSS for the lessons page uses

.subject-slide__content {
  padding: 20px 0;
}

Within the browser it was pretty easy to fix, just delete the 0 to make it 20px padding on all sides.

Pretty minor in the scheme of things, but hopefully it’s an easy fix to get incorporated.

Hey! Thanks for the heads up, I’ll let our engineer know and get back to you on that.

It appears that the update released yesterday resolved this. There now appears to be a margin on .subject-slide__navigation that prevents activating the link.

Specifically when I deactivate this line in Firefox it reverts to the old behavior.

.subject-slide__navigation:first-child {
  margin-right: var(--spacing-loose);
}

I’m going to call this resolved. If that was @TofuguNico raising this it got it added, thanks. If it was already in the pipe to fix, thanks for that too.

Glad it’s all working for you now :slightly_smiling_face:

Let us know if you ever need anything else.