forked from atom/atom
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpanels.less
More file actions
32 lines (26 loc) · 785 Bytes
/
panels.less
File metadata and controls
32 lines (26 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@import "ui-variables";
// Atom panels
atom-panel-container.left,
atom-panel-container.right {
display: flex;
}
atom-panel-container.left {
// Align panels to the right of the panel container. The effect of this is
// that the left dock's toggle button will appear on the right side of the
// empty space when the panel container has a min width in the theme.
justify-content: flex-end;
}
.tool-panel, // deprecated: .tool-panel
atom-panel {
display: block;
position: relative;
}
atom-panel-container > atom-panel.left,
atom-panel-container > atom-panel.right {
display: flex;
}
// Some packages use `height: 100%` which doesn't play nice with flexbox
atom-panel-container > atom-panel.left > *,
atom-panel-container > atom-panel.right > * {
height: initial;
}