diff options
| author | 2023-07-17 11:51:39 +0300 | |
|---|---|---|
| committer | 2023-07-17 11:51:39 +0300 | |
| commit | 5f8b5e335c7cd8efee2a1031ce63f7fd8b65eee9 (patch) | |
| tree | 2600746ad0849aa5f952245999411b68ccb5bf95 | |
| parent | Fix overflowing iframe element (python-discord#1027) (#1038) (diff) | |
Fixed inconsistent column heights in the contributing section(python-discord#1036)
Diffstat (limited to '')
| -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. | 
