fix: spacing & font-size on small displays

This commit is contained in:
2023-11-26 18:36:34 +01:00
parent 94979606f2
commit 356b2668a6

View File

@@ -26,6 +26,17 @@ table{
border-color: transparent;
}
@media screen and (max-width: 1000px){
table{
width:100%;
table-layout: fixed;
overflow-wrap: break-word;
}
td{
font-size: 2.5vw;
}
}
.m-auto{
margin: auto;
}