titleBar.component.scss 430 B

1234567891011121314151617181920212223242526
  1. $titlebar-height: 30px;
  2. :host {
  3. flex: 0 0 $titlebar-height;
  4. display: flex;
  5. .title {
  6. flex: auto;
  7. padding-left: 15px;
  8. line-height: $titlebar-height;
  9. -webkit-app-region: drag;
  10. }
  11. &.inset {
  12. flex-basis: 36px;
  13. .title {
  14. padding-left: 80px;
  15. line-height: 36px;
  16. }
  17. window-controls {
  18. display: none;
  19. }
  20. }
  21. }