- Issue created by @Kristen Pol
- 🇺🇸United States Kristen Pol Santa Cruz, CA, USA
While CKEditor is working, it is hijacking the styles, so that the theme (light/dark) and style props aren't working... so something else is needed
- ðŸ‡ðŸ‡ºHungary Gábor Hojtsy Hungary
gábor hojtsy → made their first commit to this issue’s fork.
- ðŸ‡ðŸ‡ºHungary Gábor Hojtsy Hungary
The "problem" was that the template has a real HTML paragraph element for this component. Paragraphs can't contain other paragraphs or lists, so the paragraph naturally ends when you enter a list. Then the styling does not apply to that anymore. Once the wrapper is a div, not a paragraph, this is solved. Not semantically very nice but quickly fixed it :D
BEFORE
AFTER (added another list too):
- ðŸ‡ðŸ‡ºHungary Gábor Hojtsy Hungary
BTW the testimonial component has the same problem, you may want to fix it here to be a div for the quote not a p too or open a new issue :) That at least is conceptually easier since the quote is not conceptualised as a "paragraph" :)
Current:
After changing to div:
- Merge request !111Make "paragraph" a div, this allows other block level elements to be contained... → (Merged) created by Kristen Pol
- 🇺🇸United States Kristen Pol Santa Cruz, CA, USA
Updated the css so that links show up with the correct colors
Going to merge