nbktechworld / full-stack-web-dev

6 stars 13 forks source link

Move generic CSS related to forms to form.css #65

Open nbkhope opened 3 months ago

nbkhope commented 3 months ago

Right now it seems we are reusing classes like .form-group for multiple forms in different pages.

We should move the definition of CSS classes that are generic and related to forms in general to a separate file form.css.

That way, if any page needs those classes, it would include with a link tag:

<link rel="stylesheet" href="form.css">