fix: layout shifting on small devices (#258)

* fix: overlap between plus and prompt menu icon

* fix: prompt sidebar not showing on small devices

* fix: layout shifting on small devices when there is a code block
This commit is contained in:
Syed Muzamil 2023-03-28 15:53:34 +05:30 committed by GitHub
parent 3749c9b2af
commit abdcd4508d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -32,6 +32,12 @@ html {
background: #202123;
}
@media (max-width: 720px) {
pre {
width: calc(100vw - 110px);
}
}
pre:has(div.codeblock) {
padding: 0;
}