Skip to content
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

fix for broken tool page layout #8094

Merged
merged 4 commits into from
Aug 26, 2022
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
6 changes: 5 additions & 1 deletion Documentation/custom_template/dashboard.html.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
padding: 16px;
}
.template-screenshot {
display: flex;
justify-content: center;
position: relative;
margin-bottom: 16px;
padding-top: 60%;
Expand All @@ -29,8 +31,10 @@
.template-screenshot-img {
position: absolute;
top: 0;
width: 100%;
width: auto;
height: auto;
max-height: 100%;
max-width: 100%;
}
.template-title {
font-weight: 600;
Expand Down
2 changes: 1 addition & 1 deletion Documentation/templates-and-plugins/tools-dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ items:
- name: DocFxTocGenerator
description: Generate a Table of Contents (TOC) in YAML format for DocFX. It has features like the ability to configure the order of files and the names of documents and folders. This tool is part of the DocFx Companion Tools set that can be installed using Chocolatey.
type: External
thumbnail: ~/templates-and-plugins/images/docfstocgenerator.screenshot.png
thumbnail: ~/templates-and-plugins/images/docfxtocgenerator.screenshot.png
homepage: https://github.com/Ellerbach/docfx-companion-tools
repository:
type: git
Expand Down