Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ Emeritus Maintainers Team
The following people have been active contributors in the past, but are no
longer active in the project:

.. rst-class:: grid-list-three-columns
.. include:: maintainers_emeritus.rst

Emeritus Communication Team
Expand Down
11 changes: 11 additions & 0 deletions doc/scss/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -251,3 +251,14 @@ div.sk-text-image-grid-small {
div.sk-text-image-grid-large {
@include sk-text-image-grid(100px);
}

/* Responsive three-column grid list */
.grid-list-three-columns {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;

@media screen and (max-width: 500px) {
grid-template-columns: 1fr;
}
}