FIX: Fix mobile issues (#36)

This commit is contained in:
Jordan Vidrine 2023-08-30 05:36:17 -05:00 committed by GitHub
parent cc606b50d4
commit 70ab413301
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 35 additions and 1 deletions

View File

@ -109,6 +109,10 @@
} }
} }
.discourse-tags {
gap: 0.5em;
}
.discourse-tag { .discourse-tag {
font-size: $font-down-1; font-size: $font-down-1;
border-radius: 0.25em; border-radius: 0.25em;

View File

@ -84,7 +84,6 @@ ol.category-breadcrumb {
.topic-list .topic-list-data { .topic-list .topic-list-data {
padding: 1em 1em 0 1em; padding: 1em 1em 0 1em;
width: calc(100% - 2em);
max-width: unset; max-width: unset;
} }
@ -146,3 +145,34 @@ ol.category-breadcrumb {
border: 1px solid rgba(var(--primary-rgb), 0.1); border: 1px solid rgba(var(--primary-rgb), 0.1);
margin-bottom: 1em; margin-bottom: 1em;
} }
.topic-list .topic-item-stats {
flex-wrap: wrap;
}
.topic-list-item .discourse-tags {
order: 3;
width: 100%;
margin-top: 0.5em;
}
.full-width .contents .topic-list .topic-list-item .posts-map {
padding: 0;
.number {
margin: 0;
}
}
.full-width
.contents
.topic-list
.topic-list-body
.topic-list-item
.topic-list-data.posts {
width: unset;
}
.topic-list .topic-list-header .topic-list-data,
.topic-list .topic-list-item .topic-list-data {
padding: 15px;
}