Skip to content

minor fix to the css #1503

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 22, 2017
Merged
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
15 changes: 10 additions & 5 deletions lib/resources/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,45 +17,50 @@ body {
padding: 0;
height: 100%;
}

body {
display: flex;
flex-direction: column;
min-height: 100vh;
}

header {
flex: 0 0 56px;
display: flex;
flex-direction: row;
align-items: center;
padding-left: 30px;
}

header ol {
list-style: none;
margin: 0;
padding: 0;
}

header ol li {
display: inline;
}

header form {
display: flex;
flex: 1;
justify-content: flex-end;
padding-right: 30px;

}

footer {
flex: 0 0 16px;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
text-align: center;
padding: 16px 20px;
}

main {
flex: 1;
display: flex;
flex-direction: row;
}

.sidebar-offcanvas-left {
flex: 0 1 195px;
overflow-y: scroll;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ author: Dart Team <[email protected]>
description: A documentation generator for Dart.
homepage: https://github.com/dart-lang/dartdoc
environment:
sdk: '>=1.23.0-dev.11.5 <2.0.0-dev.infinity'
sdk: '>=1.23.0-dev.11.5 <2.0.0'
dependencies:
analyzer: ^0.30.0
args: ^0.13.0
Expand Down
15 changes: 10 additions & 5 deletions testing/test_package_docs/static-assets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,45 +17,50 @@ body {
padding: 0;
height: 100%;
}

body {
display: flex;
flex-direction: column;
min-height: 100vh;
}

header {
flex: 0 0 56px;
display: flex;
flex-direction: row;
align-items: center;
padding-left: 30px;
}

header ol {
list-style: none;
margin: 0;
padding: 0;
}

header ol li {
display: inline;
}

header form {
display: flex;
flex: 1;
justify-content: flex-end;
padding-right: 30px;

}

footer {
flex: 0 0 16px;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
text-align: center;
padding: 16px 20px;
}

main {
flex: 1;
display: flex;
flex-direction: row;
}

.sidebar-offcanvas-left {
flex: 0 1 195px;
overflow-y: scroll;
Expand Down