diff options
| author | 2020-10-12 09:52:11 +0100 | |
|---|---|---|
| committer | 2020-10-12 09:52:11 +0100 | |
| commit | 924f54a83246fa0ec201daac0b391a2f59fe9aff (patch) | |
| tree | 642d23bf1f8959fb22a77d08c0efc5c7cf9fca93 | |
| parent | Fix line endings (diff) | |
Align server icons better
| -rw-r--r-- | pydis_site/static/css/home/timeline.css | 15 | 
1 files changed, 13 insertions, 2 deletions
| diff --git a/pydis_site/static/css/home/timeline.css b/pydis_site/static/css/home/timeline.css index e7e0b264..fd364d38 100644 --- a/pydis_site/static/css/home/timeline.css +++ b/pydis_site/static/css/home/timeline.css @@ -3510,8 +3510,19 @@ mark {  }  .cd-timeline__img img { -    width: 30px; -    height: 30px; +    width: 50px; +    height: 50px; +    margin-left: 2px; +    margin-top: 2px; +} + +@media (max-width: 64rem) { +    .cd-timeline__img img { +        width: 30px; +        height: 30px; +        margin-left: 2px; +        margin-top: 2px; +    }  }  @media (min-width: 64rem) { | 
