AEM Sites with Edge Delivery site implementing https://www.bevespi.com/
npm i
npm run lint
- Create a new repository based on the
aem-boilerplate
template and add a mountpoint in thefstab.yaml
- Add the AEM Code Sync GitHub App to the repository
- Install the AEM CLI:
npm install -g @adobe/aem-cli
- Start AEM Proxy:
aem up
(opens your browser athttp://localhost:3000
) - Open the
{repo}
directory in your favorite IDE and start coding :)
- The root font size (in html) is set to
10px
(62.5%
of16px
). According to the above,1rem
=10px
(1.6rem
=16px
): this makes sizes inrem
- which are great for accommodating responsiveness and accessibility - human readable - According to our analysis and mainstream recommendations, we decided to use
rem
only for font-size and correlated metrics (like line-height), whilepx
for the remainder - like border width, element sizing/padding/margins - and in general where the requirement of having fixed dimensions and/or references is predominant