Template:Main Page/styles.css: Difference between revisions

From Hololive Fan Wiki
Content added Content deleted
(Created page with "→‎For small screen widths, avoid squashed cells by making each cell expand to take up the whole row: @media only screen and (max-width: 785px) { .welcome-table td { display: block; } }")
 
m (tweak resolution breakpoint from 785px → 800px)
 
Line 1: Line 1:
/* For small screen widths, avoid squashed cells by making each cell expand to take up the whole row */
/* For small screen widths, avoid squashed cells by making each cell expand to take up the whole row */
@media only screen and (max-width: 785px) {
@media only screen and (max-width: 800px) {
.welcome-table td {
.welcome-table td {
display: block;
display: block;

Latest revision as of 16:18, 6 January 2022

/* For small screen widths, avoid squashed cells by making each cell expand to take up the whole row */
@media only screen and (max-width: 800px) {
	.welcome-table td {
       display: block;
    }
}