Bug 1295249 - aboutdebugging: fix alignment of sidebar items;r=janx
The align-content property no longer has any impact on single line
flex containers [1].
Instead we now use align-items: center to enforce vertical centering.
[1] https://www.w3.org/TR/css-flexbox-1/#change-201409-align-content-wrapping
MozReview-Commit-ID: 2Cw8zrDjPZ1
--- a/devtools/client/aboutdebugging/aboutdebugging.css
+++ b/devtools/client/aboutdebugging/aboutdebugging.css
@@ -17,17 +17,17 @@ button {
min-width: 100px;
}
/* Category panels */
.category {
display: flex;
flex-direction: row;
- align-content: center;
+ align-items: center;
}
.category-name {
cursor: default;
}
.app {
height: 100%;