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:
parent
3749c9b2af
commit
abdcd4508d
|
@ -32,6 +32,12 @@ html {
|
|||
background: #202123;
|
||||
}
|
||||
|
||||
@media (max-width: 720px) {
|
||||
pre {
|
||||
width: calc(100vw - 110px);
|
||||
}
|
||||
}
|
||||
|
||||
pre:has(div.codeblock) {
|
||||
padding: 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue