diff --git a/.github/workflows/deepfactor.yml b/.github/workflows/deepfactor.yml deleted file mode 100644 index 6a43ba8e..00000000 --- a/.github/workflows/deepfactor.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: deepfactor-scan -on: - push: - branches: [ main, develop, feature/deepfactor ] -jobs: - build: - runs-on: ubuntu-latest - container: - image: public.ecr.aws/deepfactor/df/runtime:3.3.3-2346 - env: - DF_RUN_TOKEN: ${{ secrets.DF_RUN_TOKEN }} - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Scan with Deepfactor - run: dfctl scan -s fs -a ${{ github.event.repository.name }} -c ${{ github.event.repository.name }} -V ${{ github.ref_name }} . diff --git a/CHANGELOG.md b/CHANGELOG.md index 4eebc07d..8deaae05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# Changelog +All notable changes to this project will be documented in this file. +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), enforced with [semantic-release](https://github.com/semantic-release/semantic-release). + +### [11.4.2](https://github.com/silinternational/ui-components/compare/v11.4.1...v11.4.2) (2024-08-19) + + +### Fixed + +* **Drawer:** fix A11y warning in Drawer ([275d2b9](https://github.com/silinternational/ui-components/commit/275d2b9f0944e82da7b275f043afc11b6e9296c1)) + # Changelog All notable changes to this project will be documented in this file. diff --git a/components/mdc/Drawer/Drawer.svelte b/components/mdc/Drawer/Drawer.svelte index 84cdfb92..48b11f8a 100644 --- a/components/mdc/Drawer/Drawer.svelte +++ b/components/mdc/Drawer/Drawer.svelte @@ -118,6 +118,11 @@ main { .main-content-height { height: var(--mdc-drawer-height); } +.drawer-menu { + display: flex; + flex-direction: column; + padding: 0; +} @@ -138,50 +143,52 @@ main { -