From c8ec18a6a7a954c9d9e5614764447dde28ae2d0d Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 2 Oct 2021 21:51:24 +0100 Subject: [PATCH 1/5] :lipstick: (#250) Improved responsivness of auto layout --- src/views/Home.vue | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/views/Home.vue b/src/views/Home.vue index 85a8e1be..6c36bb2f 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -266,6 +266,15 @@ export default { flex-direction: row; } } + &.orientation-horizontal, &.orientation-vertical { + @include phone { --content-max-width: 100%; } + @include tablet { --content-max-width: 98%; } + @include laptop { --content-max-width: 90%; } + @include monitor { --content-max-width: 85%; } + @include big-screen { --content-max-width: 80%; } + @include big-screen-up { --content-max-width: 60%; } + max-width: var(--content-max-width, 90%); + } /* Specify number of columns, based on screen size or user preference */ @include phone { --col-count: 1; } From 11d9ea535bc25c4cad43a4147bf0911a414e651f Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 2 Oct 2021 21:52:10 +0100 Subject: [PATCH 2/5] :building_construction: Adds bot token to raise issue step --- .github/workflows/docs-link-checker.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docs-link-checker.yml b/.github/workflows/docs-link-checker.yml index e3a3faad..023bc5a9 100644 --- a/.github/workflows/docs-link-checker.yml +++ b/.github/workflows/docs-link-checker.yml @@ -22,6 +22,7 @@ jobs: - name: Raise an Issue with Results uses: peter-evans/create-issue-from-file@v3 with: + token: ${{secrets.BOT_GITHUB_TOKEN}} title: '[DOCS] Broken Links found in Documentation' content-filepath: .github/broken-link-report.md labels: '📕 Docs, 👩‍💻 Good First Issue, 💤 Low Priority, 🤖 Auto' \ No newline at end of file From 848b661c7690fabb5c55e958af09998629d2fe3e Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 2 Oct 2021 22:35:47 +0100 Subject: [PATCH 3/5] :truck: Refactor form elemts --- src/components/FormElements/Button.vue | 6 +++++- src/components/LinkItems/Item.vue | 5 +++-- src/utils/MiscHelpers.js | 14 ++++++++++++++ 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/src/components/FormElements/Button.vue b/src/components/FormElements/Button.vue index 2c8f6279..54b3265b 100644 --- a/src/components/FormElements/Button.vue +++ b/src/components/FormElements/Button.vue @@ -1,5 +1,9 @@