Skip to content

Application created with intention to detect the speakers connected to device.

Notifications You must be signed in to change notification settings

AbhayPai/app-detect-speakers

Repository files navigation

Detect Speakers

Rules followed in this Project.

1. SCSS Rules

1.1 Folder architecture of scss is based on SMACSS viz.

  • Base.
  • Layout.
  • Module.
  • State.
  • Page (Root file viz. custom made ) (which may or may not contains above all scss file) (inspiration from ITCSS).

1.2 All SCSS files from above architecture directory must follow:

  • One class must do one thing properly.
  • BEM seperator for class defining. eg(.navbar--logo__link)
  • Object oriented CSS selector. OOCSS
  • Avoid styling using id.
  • Avoid using element selector directly.
  • Avoid deep selector (not greater than 3).

Concept Explanation.