From 9cba20c39cf6fc30f718ab44c1e6d3daaa086b12 Mon Sep 17 00:00:00 2001 From: "Alexander (M2)" Date: Tue, 16 Jul 2024 03:57:34 -0400 Subject: [PATCH] Completed descriptions for layout patterns --- public/index.html | 18 +++++------ public/patterns/core/breakpoints/index.html | 4 +++ public/patterns/core/header/index.html | 3 ++ public/patterns/core/status/index.html | 36 ++++++++++----------- public/patterns/core/tabs/index.html | 3 +- src/pg/_config.pug | 6 ++-- src/pg/patterns/core/breakpoints/index.pug | 7 ++++ src/pg/patterns/core/header/index.pug | 5 +++ src/pg/patterns/core/tabs/index.pug | 8 ++--- 9 files changed, 54 insertions(+), 36 deletions(-) diff --git a/public/index.html b/public/index.html index 31de794..b196475 100644 --- a/public/index.html +++ b/public/index.html @@ -72,17 +72,17 @@

Layouts Complete

-
-

Header - In progress

+
+

Header + Complete

-
-

Breakpoints - In progress

+
+

Breakpoints + Complete

-
-

Tabs - In progress

+
+

Tabs + Complete

Status diff --git a/public/patterns/core/breakpoints/index.html b/public/patterns/core/breakpoints/index.html index a8801e3..6d12e98 100644 --- a/public/patterns/core/breakpoints/index.html +++ b/public/patterns/core/breakpoints/index.html @@ -5,8 +5,12 @@

What is it

+

Breakpoints enable responsive mobile design.

When to use it

+

Use breakpoints when designing for different screen sizes.

+

The breakpoints SCSS mixin included implements media queries to allow for the change of the layout and design based on pre-defined screen sizes.

How to use it

+

This pattern is only available for SCSS breakpoints. The mixin is avai

When using this, use the default break points as they are set to the same as the Bootstrap framework. The grid for the design system at large break point has been widened to accompdate 3 colour cards across.

//-		DS2 core (c) 2024 Alexander McIlwraith 
diff --git a/public/patterns/core/header/index.html b/public/patterns/core/header/index.html
index 2a14da5..ba020ac 100644
--- a/public/patterns/core/header/index.html
+++ b/public/patterns/core/header/index.html
@@ -5,8 +5,11 @@
   
   
     

What is it

+

A header is layout pattern that helps the user identify the site.

When to use it

+

Use a header at the top of every page. The 'front page' of a site may have a different header than the rest of the pages.

How to use it

+

Place the header at the top of the page after the skip to main content link. This basic header should be replaced with your own site's header.