diff options
author | 2023-07-18 19:52:55 +0200 | |
---|---|---|
committer | 2023-07-18 19:52:55 +0200 | |
commit | e5bf8a9e992a70370910e538fb8113a23b48c2fa (patch) | |
tree | 2600746ad0849aa5f952245999411b68ccb5bf95 | |
parent | Fix overflowing iframe element (python-discord#1027) (#1038) (diff) | |
parent | Fixed inconsistent column heights in the contributing section(python-discord#... (diff) |
Merge pull request #1040 from korstep/#1036-inconsistent-column-heights
Fixed inconsistent column heights in the contributing section
-rw-r--r-- | pydis_site/static/css/content/page.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pydis_site/static/css/content/page.css b/pydis_site/static/css/content/page.css index cabf6962..239f2809 100644 --- a/pydis_site/static/css/content/page.css +++ b/pydis_site/static/css/content/page.css @@ -16,6 +16,15 @@ i.has-icon-padding { padding: 0 10px 25px 0; } +.card.github-card { + height: 100%; + display: flex; + flex-direction: column; +} + +.card.github-card .card-content { + flex: 1; +} /* * Move padding padding from <pre> tag to hljs <code> tags so the padding * space is colored the same as the background of hljs <code> blocks. |