Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/assets/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,23 @@ footer {
margin-top: 1em;
text-align: center;
}

@media screen and (max-width:720px) {
thead {
tr {
th {
writing-mode: vertical-rl;
text-orientation: sideways-right;
vertical-align: top;
}
}
}

tbody {
th,
td {
padding: 0.5em 0.2em;
font-size: 14px;
}
}
}
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import VersionRow from '../components/VersionRow.astro';
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width" />
<meta name="viewport" content="width=600px" />
<meta name="generator" content={Astro.generator} />
<title>Fucking Apple Version Numbers</title>
</head>
Expand Down