feat(share): improve webview layout

This commit is contained in:
Elian Doran 2025-11-01 21:28:31 +02:00
parent d62aecc551
commit 6322ca11c9
No known key found for this signature in database

View File

@ -54,17 +54,25 @@ body:not(.math-loaded) .math-tex {
visibility: hidden;
}
body.type-webView #main {
max-width: unset;
}
body.type-webView {
#main {
max-width: unset;
padding: 0;
}
body.type-webView #content {
display: flex;
flex-direction: column;
height: 100%;
}
#content {
display: flex;
flex-direction: column;
height: 100%;
iframe.webview {
width: 100%;
flex-grow: 1;
h1 {
display: none;
}
iframe.webview {
width: 100%;
flex-grow: 1;
border: 0;
}
}
}