Fix extra spacing in the file search view (#4343)

Recent changes in the VS Code layout for that viewlet caused the min-height property to affect the display (the property was set on that class before but the layout prevented it from actually being displayed as it was).
I removed the style for the messages class completely since I couldn't find a place that we actually used that ourselves - and anyways having styling on such a common name like messages isn't really a good practice since it applies to everything in ADS.
This commit is contained in:
Charles Gagnon
2019-03-08 07:32:04 -08:00
committed by GitHub
parent 036ffe595a
commit 496243fbc7

View File

@@ -39,11 +39,6 @@
max-height: fit-content;
}
.messages {
flex: 1 100 0;
min-height: 25%;
}
.minHeight {
min-height: fit-content;
}