Skip to content

Commit

Permalink
Tweak formatting + fix fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
DanTup committed Sep 24, 2024
1 parent a5a2b02 commit 577bd3b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
14 changes: 11 additions & 3 deletions css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,30 @@ $skipped: orange;
$unknown: darkorange;

body {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
line-height: 1.6em;
margin: 0;
display: grid;
min-height: 100%;
grid-column-gap: 20px;
grid-template-rows: auto auto 1fr auto;
grid-template-columns: auto 120px 700px auto;
grid-template-columns: auto 130px 700px auto;
grid-template-areas:
". . header ."
"line line line line"
". nav main ."
"footer footer footer footer";
}

body, th, td {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
}

th {
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
}

body.big-screen {
grid-template-columns: 50px auto 50px;
grid-template-areas:
Expand Down
5 changes: 3 additions & 2 deletions sdk-version-compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ title: SDK Version Compatibility
---

<style>
table td:not(:nth-child(3)) {
table th, table td {
white-space: nowrap;
padding: 4px 12px 4px 0;
}
</style>

The table below indicates the latest Dart/Flutter extensions that can be used when using older versions of the Dart/Flutter SDKs.

| Dart | Flutter | Extension Version | Announcement |
| Dart SDK | Flutter SDK | Extension Version | Announcement |
| ----- | ----- | ----- | ----- |
| up to v3.0 | up to v3.10 | <span title="v?.??+1 removes legacy analysis server protocol support">Supported until v?.??</span> | [announcement](https://groups.google.com/g/flutter-announce/c/JQHzM3FbBGI) |
| v3.0 - current | v3.10 - current | Currently supported |

0 comments on commit 577bd3b

Please sign in to comment.