From 4b6bf6cd46b8ac5555152893dc83c62623f3e446 Mon Sep 17 00:00:00 2001 From: Iogr Wessel Date: Wed, 6 Nov 2024 17:18:28 -0300 Subject: [PATCH] docs(tooltip): add semicolon in lists --- .../0014-why-use-popperjs.stories.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/docs/stories/architecture-decision-records/0014-why-use-popperjs.stories.mdx b/apps/docs/stories/architecture-decision-records/0014-why-use-popperjs.stories.mdx index 337b0a7e5..5ecdd7b8b 100644 --- a/apps/docs/stories/architecture-decision-records/0014-why-use-popperjs.stories.mdx +++ b/apps/docs/stories/architecture-decision-records/0014-why-use-popperjs.stories.mdx @@ -14,14 +14,14 @@ It was necessary due to the complexity of modifying the `ion-popover` to meet th These changes included things like: -- Removing a class that locks the scroll on the site (added to the body) when using the `ion-popover`, -- Adding scroll tracking -- Ensuring responsiveness in terms of automatically changing side/direction. +- Removing a class that locks the scroll on the site (added to the body) when using the `ion-popover`; +- Adding scroll tracking; +- Ensuring responsiveness in terms of automatically changing side/directio; ## Decision Drivers -- Bundle Size: The size of the library was considered. If the size was too large, it would be a NO-GO for inclusion in the project. As the entire library currently (2024/11/05) only 8.9KB, we understood that the size would not negatively impact the user experience. -- Popularity and Maintenance: PopperJS is the most well-known library for handling this type of work. Many libraries that implement some type of "popper" use it to provide this functionality. +- Bundle Size: The size of the library was considered. If the size was too large, it would be a NO-GO for inclusion in the project. As the entire library currently (2024/11/05) only 8.9KB, we understood that the size would not negatively impact the user experience; +- Popularity and Maintenance: PopperJS is the most well-known library for handling this type of work. Many libraries that implement some type of "popper" use it to provide this functionality; ## Decision