We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fa3d37 commit bdc6354Copy full SHA for bdc6354
2 files changed
CHANGELOG.md
@@ -7,6 +7,8 @@ releases are available on [PyPI](https://pypi.org/project/pytask) and
7
8
## Unreleased
9
10
+- Improves the documentation homepage cards by making the full tile clickable and
11
+ fixes the plugin list warning admonition formatting.
12
- [#874](https://github.com/pytask-dev/pytask/pull/874) improves the lockfile
13
documentation by restructuring related guides around user workflows and introducing
14
`pytask.lock` in the tutorials.
docs/source/_static/css/custom.css
@@ -3,9 +3,16 @@
3
}
4
5
.home-card-grid li {
6
+ position: relative;
text-align: center;
+.home-card-grid li .home-card-title::after {
+ position: absolute;
+ inset: 0;
+ content: "";
+}
15
+
16
.home-card-icon {
17
display: block;
18
margin: 0 auto 0.75rem;
0 commit comments