MediaWiki:Common.css: Difference between revisions

fixing
media query for home page featured section
 
Line 434: Line 434:
background-color: #003b69;
background-color: #003b69;
border-color: #8bccff;
border-color: #8bccff;
}
.featured-articles-container {
width: inherit;
display: flex;
flex-direction:row;
justify-content:center;
align-items:stretch;
gap:4px;
}
@media screen and (max-width: 480px) {
  .featured-articles-container {
    flex-direction:column;
  }
}
}