-
Notifications
You must be signed in to change notification settings - Fork 641
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
[Readme]Reduce space when display content in readme container #8609
Conversation
@@ -87,7 +87,7 @@ | |||
</div> | |||
</div> | |||
|
|||
<div class="hidden" id="readme-preview" style="padding-top:3em;"> | |||
<div class="hidden" id="readme-preview" style="padding-top:0.25em;"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we move this inline CSS to a LESS file that is appropriate for all of the places _ImportReMe.cshtml
is used?
What's the purpose of the container's default size? The forced size looks a little strange to me. |
@chgill-MSFT, could you help provide some idea in terms of extra space below content? |
The space here actually is div for edit markdown
I created new ticket to address seperately, It was not trivial fix, here is ticket #8651 |
|
||
#preview-html { | ||
padding-top: 3em; | ||
padding-bottom: 3em |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
padding-bottom: 3em | |
padding-bottom: 3em; |
Summary of the changes (in less than 80 characters):
Reduce space when display readme
Before:
After:
Addresses #8508, #8651