changed project/xx/view to grid layout

This commit is contained in:
2025-09-21 00:10:34 +02:00
parent 25ed0c6cc9
commit 015a55082b
2 changed files with 88 additions and 108 deletions

View File

@@ -393,4 +393,16 @@ table{
a.wikilink{
display: block;
}
.grid2{
display: grid;
grid-template-columns: 230px auto;
}
@media screen and (max-width: 600px) {
.grid2{
display: grid;
grid-template-columns: auto;
}
}