-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix calculation of
auto-fill
/auto-fit
repetition count when conta…
…iner has a definite percentage size
- Loading branch information
Showing
6 changed files
with
718 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
# Release Notes | ||
|
||
## Unreleased | ||
|
||
### Fixes | ||
Check failure on line 5 in RELEASES.md GitHub Actions / Markdown LintHeadings should be surrounded by blank lines
|
||
- Fix calculation of `auto-fill`/`auto-fit` repetition count when container has a definite percentage size | ||
Check failure on line 6 in RELEASES.md GitHub Actions / Markdown LintLists should be surrounded by blank lines
|
||
|
||
## 0.6.0 | ||
|
||
### Highlights | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<script src="../../scripts/gentest/test_helper.js"></script> | ||
<link rel="stylesheet" type="text/css" href="../../scripts/gentest/test_base_style.css"> | ||
<title> | ||
Test description | ||
</title> | ||
</head> | ||
<body> | ||
|
||
<div id="test-root" style="height: 300px; width: 730px;"> | ||
<div style="display: grid; width: 100%; height: 100%; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; padding: 10px; background-color: yellow;"> | ||
<div style="display: block; background-color: teal;"></div> | ||
<div style="display: block; background-color: pink;"></div> | ||
<div style="display: block; background-color: royalblue;"></div> | ||
<div style="display: block; background-color: violet;"></div> | ||
<div style="display: block; background-color: beige;"></div> | ||
<div style="display: block; background-color: burlywood;"></div> | ||
<div style="display: block; background-color: lightslategrey;"></div> | ||
<div style="display: block; background-color: lightseagreen;"></div> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<script src="../../scripts/gentest/test_helper.js"></script> | ||
<link rel="stylesheet" type="text/css" href="../../scripts/gentest/test_base_style.css"> | ||
<title> | ||
Test description | ||
</title> | ||
</head> | ||
<body> | ||
|
||
<div id="test-root" style="height: 300px; width: 730px;"> | ||
<div style="display: grid; width: 100%; height: 100%; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; padding: 10px; background-color: yellow;"> | ||
<div style="display: block; background-color: teal;"></div> | ||
<div style="display: block; background-color: pink;"></div> | ||
<div style="display: block; background-color: royalblue;"></div> | ||
<div style="display: block; background-color: violet;"></div> | ||
<div style="display: block; background-color: beige;"></div> | ||
<div style="display: block; background-color: burlywood;"></div> | ||
<div style="display: block; background-color: lightslategrey;"></div> | ||
<div style="display: block; background-color: lightseagreen;"></div> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.