fixed size

This commit is contained in:
2026-03-03 17:36:06 -06:00
parent 1de700902a
commit c69aa009b7
8 changed files with 63 additions and 40 deletions
@@ -15,7 +15,7 @@ export default function Information(props: InformationProps) {
{entries.map(([key, value]) => (
<li key={key} className="informationItem">
<span className="informationKey">{key}</span>
<span className="informationValue">{value}</span>
<span className={`informationValue ${key}`}>{value}</span>
</li>
))}
</ul>
+3 -1
View File
@@ -44,9 +44,11 @@
margin-right: 6px;
vertical-align: middle;
}
@media(max-height:550px) {
@media(max-height:800px) {
.tableContainer {
margin-top: 1.5rem;
max-width: 320px;
}
}