Fix meme css

This commit is contained in:
Bruno Rybársky 2024-06-06 09:57:48 +02:00
parent b90054f365
commit e8a9a3f2ba

@ -409,15 +409,12 @@ div#articleslist>article{
#meme_gallery { #meme_gallery {
display: grid; display: grid;
grid-template-columns: 1fr 1fr 1fr; grid-template-columns: repeat(auto-fit, minmax(385px, 1fr));
grid-auto-rows: 1fr; grid-auto-rows: 1fr;
} }
@media (max-width: 1050px) { @media (max-width: 1050px) {
#meme_gallery {
grid-template-columns: 1fr 1fr;
}
table .rozvrh { table .rozvrh {
overflow: auto; overflow: auto;
@ -502,10 +499,3 @@ div#articleslist>article{
width: 100%; width: 100%;
} }
} }
@media (max-width: 600px) {
#meme_gallery {
grid-template-columns: 1fr;
}
}