technojam / technojam-frontend

This is the repository for TechnoJam's website frontend, for work please work on Development 1.0. Please do git pull before giving a pull request.
https://technojam--web.herokuapp.com/
MIT License
33 stars 97 forks source link

Generic CSS #263

Open ravisaxena23 opened 4 years ago

ravisaxena23 commented 4 years ago

description some CSS used in pages are common. Currently, CSS present in components is inline.

solution Inside "../src/Components/Styles" folder Create a separate CSS file for each component. with name _component.css import the CSS file in the component. replace inline CSS with generic classes.

alternatives you can apply your creativity just ping us what solution you are doing.

EnechukwuChibuike commented 4 years ago

description some CSS used in pages are common. Currently, CSS present in components is inline.

solution Inside "../src/Components/Styles" folder Create a separate CSS file for each component. with name _component.css import the CSS file in the component. replace inline CSS with generic classes.

alternatives you can apply your creativity just ping us what solution you are doing.

Can I do that?

ravisaxena23 commented 4 years ago

@EnechukwuChibuike sure

ravisaxena23 commented 4 years ago

@EnechukwuChibuike should I assign it to you?

EnechukwuChibuike commented 4 years ago

@EnechukwuChibuike should I assign it to you?

Yes

Eddges commented 4 years ago

Hey, I would like to work on it. I was thinking of implementing the solution with css-modules. That way the scope will be limited to the component instead of having a global effect.