I'm in an interesting position right now that I'm wondering how some of you other front end devs manage.
So I am a front end developer working with Angular, I tend to just use angular material for the design that has worked well up until now.
I'm in a situation now, where I'm working with a designer who wants to add custom HTML/CSS but has no interest or knowledge at all of the development.
So I have no interest in CSS, and they have no interest in learning the intricacies of Angular.
So, what are people's experiences with this and how do you manage it in a production project?
Assume the deployment of changes is irrelevant, I'm interested to know how work is managed from a day to day perspective.
Speaking for myself here: React and styled-components allows us to have such a level of componentization (is that a word?) that I tend to mix styles and logic on the same file. Components are so small and atomic that adding some styling won't collide with the logic of the app. In case some component breaks it's easy to identify and fix without breaking anything else.
Hope it helps!