Skip to content

Commit

Permalink
fix: Responsivity was missing standard page class
Browse files Browse the repository at this point in the history
  • Loading branch information
TEParsons committed Sep 5, 2024
1 parent 4228a8f commit 026b8bc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions torillic/torillic.css
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,9 @@ h1:empty + * {
/** Responsivity **/
/* Compress for small windows */
@media only screen and (max-width: 22cm) {
#write, #typora-source {
.torillic-page, /* generic HTML */
#write, #typora-source /* typora */
{
column-count: 1;
width: calc(100% - 2rem);
margin: 1rem;
Expand All @@ -451,7 +453,9 @@ h1:empty + * {
}
}
@media print and (max-width: 14cm) {
#write, #typora-source {
.torillic-page, /* generic HTML */
#write, #typora-source /* typora */
{
column-count: 1;
margin: 1cm;
column-width: 100%;
Expand Down

0 comments on commit 026b8bc

Please sign in to comment.