Skip to content

Commit

Permalink
Merge branch 'main' into filter-widget
Browse files Browse the repository at this point in the history
  • Loading branch information
choyiny authored Oct 3, 2023
2 parents 4f0e6c5 + b23082c commit 8e54078
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 13 deletions.
14 changes: 14 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"files": ["README.md"],
"imageSize": 100,
"commit": false,
"commitType": "docs",
"commitConvention": "angular",
"contributors": [],
"contributorsPerLine": 7,
"skipCi": true,
"repoType": "github",
"repoHost": "https://github.com",
"projectName": "astral-accessibility",
"projectOwner": "verto-health"
}
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,14 @@ $ yarn cypress open
```

Choose E2E Testing, and select a browser to start running the Specs

## Contributors ✨

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1"
/>
<div class="d-flex align-items-end">
<div class="astral-accessibility d-flex align-items-end">
<div>
<div class="astral-inverted-corner"></div>
<button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@

.astral-icon {
@extend .astral-position;
line-height: normal;
background-color: var(--modalBackgroundColor);
padding: 8px;
padding-right: 16px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,17 +77,17 @@ export class LineHeightComponent {
states = [this.base, "Light Height", "Moderate Height", "Heavy Height"];

lowHeight = `
*{
line-height: 1.5 !important;
}`;
*:not(.astral-accessibility *) {
line-height: 1.5 !important;
}`;

moderateHeight = `
*{
*:not(.astral-accessibility *) {
line-height: 3 !important;
}`;

heavyHeight = `
*{
*:not(.astral-accessibility *) {
line-height: 4 !important;
}`;

Expand Down
3 changes: 0 additions & 3 deletions projects/demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ <h1>Welcome to Astral Accessibility!</h1>
</g>
</svg>
</div>

<div class="state-dots-wrap">
<span>Contrast</span>
</div>
Expand Down Expand Up @@ -167,7 +166,6 @@ <h1>Welcome to Astral Accessibility!</h1>
</g>
</svg>
</div>

<div class="state-dots-wrap">
<span>Saturation</span>
</div>
Expand Down Expand Up @@ -258,7 +256,6 @@ <h1>Welcome to Astral Accessibility!</h1>
</g>
</svg>
</div>

<div class="state-dots-wrap">
<span>Text Spacing</span>
</div>
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7309,10 +7309,10 @@ postcss@^8.2.14, postcss@^8.3.7, postcss@^8.4.19, postcss@^8.4.7, postcss@^8.4.8
picocolors "^1.0.0"
source-map-js "^1.0.2"

prettier@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.0.2.tgz#78fcecd6d870551aa5547437cdae39d4701dca5b"
integrity sha512-o2YR9qtniXvwEZlOKbveKfDQVyqxbEIWn48Z8m3ZJjBjcCmUy3xZGIv+7AkaeuaTr6yPXJjwv07ZWlsWbEy1rQ==
prettier@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.0.3.tgz#432a51f7ba422d1469096c0fdc28e235db8f9643"
integrity sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==

pretty-bytes@^5.3.0, pretty-bytes@^5.6.0:
version "5.6.0"
Expand Down

0 comments on commit 8e54078

Please sign in to comment.