⚠️ Please see plans to display ads on bg3.wiki. ⚠️

Template:Quote fancy/style.css: Difference between revisions

From bg3.wiki
Jump to navigation Jump to search
(Created page with ".bg3wiki-image-quote { display: flex; align-items: center; flex-direction: row; } @media screen and (min-width: 780px) { .bg3wiki-image-quote { display: flex; align-items: center; flex-direction: column; } }")
 
No edit summary
Line 2: Line 2:
     display: flex;
     display: flex;
     align-items: center;
     align-items: center;
     flex-direction: row;
     flex-direction: column;
}
}


Line 9: Line 9:
         display: flex;
         display: flex;
         align-items: center;
         align-items: center;
         flex-direction: column;
         flex-direction: row;
     }
     }
}
}

Revision as of 07:49, 20 July 2024

.bg3wiki-image-quote {
     display: flex;
     align-items: center;
     flex-direction: column;
}

@media screen and (min-width: 780px) {
    .bg3wiki-image-quote {
        display: flex;
        align-items: center;
        flex-direction: row;
    }
}