Adds media query style to prevent Report button from overlapping username. (#1040)

This commit is contained in:
Zach Baird 2023-03-13 23:30:12 -04:00 committed by GitHub
parent 29ddc04f7b
commit 2d2fe4983c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -528,4 +528,10 @@ export default defineNuxtComponent({
.textarea-wrapper {
height: 10rem;
}
@media (max-width: 400px) {
.sidebar {
padding-top: 3rem;
}
}
</style>