diff --git a/src/assets/styles/app/_content.scss b/src/assets/styles/app/_content.scss index cbb8b63f6..9f1583feb 100644 --- a/src/assets/styles/app/_content.scss +++ b/src/assets/styles/app/_content.scss @@ -153,6 +153,10 @@ text-decoration: underline; } } + + li { + line-height: 1.5; + } } } } diff --git a/src/views/spacing/SpacingDemo.vue b/src/views/spacing/SpacingDemo.vue index a6eacfd24..a8eaa9714 100644 --- a/src/views/spacing/SpacingDemo.vue +++ b/src/views/spacing/SpacingDemo.vue @@ -8,56 +8,64 @@
-
-
-
-
Use Case 1
-

Spacing is a handy utility when elements wrap when screen size get smaller. In example below, when buttons wrap - they are displayed on top of each other whereas with spacing this issue can easily be resolved. -

+
+
Margin
+
Without Spacing
+
+
+ +
+
Padding
+
Without Spacing
+
+
+ +
With Spacing
+
+
+ +
Responsive Spacing
+
+
@@ -77,7 +85,7 @@ export default { \ No newline at end of file diff --git a/src/views/spacing/SpacingDoc.vue b/src/views/spacing/SpacingDoc.vue index 14e5e6c4a..490d0aa73 100644 --- a/src/views/spacing/SpacingDoc.vue +++ b/src/views/spacing/SpacingDoc.vue @@ -3,16 +3,18 @@
Getting Started
-

The classes modify the margins and use the p-m{position}-{value} syntax whereas for responsive - values p-m{position}-{breakpoint}-{value} format is used.

- -<div class="p-mb-2"></i> -<div class="p-mt-4"></i> -<div class="p-m-1 p-m-lg-2"></i> - +

The spacing classes use the p-{property}{position}-{value} syntax whereas for responsive + values p-{property}{position}-{breakpoint}-{value} format is used.

+ +
Property
+

Property can either be a margin or a padding.

+
    +
  • m: margin
  • +
  • p: padding
  • +
Position
-

Position can either be either of the 4 sides, the x-y axis or blank for the shortand of all sides.

+

Position are available for the individual sides, the x-y axis or blank for the shortand of all sides.

  • t: top
  • b: bottom
  • @@ -24,7 +26,7 @@
Value
-

Value field varies from 0 to 6 where default value of the $spacer is 1rem. The special auto value is used to center elements using auto margins.

+

Value field varies from 0 to 6 where default value of the $spacer is 1rem. The special auto value is available to margins only and used to center elements.

  • 0: $spacer * 0
  • 1: $spacer * .25
  • @@ -45,6 +47,17 @@
  • xl: larger screens .e.g monitors
+
Examples
+ +<div class="p-mb-2">Margin bottom with level 2</i> +<div class="p-mt-4">Margin top with level 2</i> +<div class="p-m-2">Margin for all sides with level 2</i> +<div class="p-mx-auto">Auto margins for left and right side</i> +<div class="p-pb-4">Padding bottom with level 4</i> +<div class="p-p-1">Padding for all sides with level 1</i> +<div class="p-m-1 p-p-1 p-m-lg-3 p-b-lg-3">Level 3 spacing for lg screens and level 1 for smaller screens (xs).</i> + +
Dependencies

PrimeFlex.

@@ -55,7 +68,65 @@