| 1234567891011121314151617181920212223242526 |
- $titlebar-height: 30px;
- :host {
- flex: 0 0 $titlebar-height;
- display: flex;
- .title {
- flex: auto;
- padding-left: 15px;
- line-height: $titlebar-height;
- -webkit-app-region: drag;
- }
- &.inset {
- flex-basis: 36px;
- .title {
- padding-left: 80px;
- line-height: 36px;
- }
- window-controls {
- display: none;
- }
- }
- }
|