mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-09 13:15:37 +03:00
26 lines
499 B
Plaintext
26 lines
499 B
Plaintext
@import "ui-variables";
|
|
|
|
// Atom panels
|
|
|
|
atom-panel-container.left,
|
|
atom-panel-container.right {
|
|
display: flex;
|
|
}
|
|
|
|
.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;
|
|
}
|