window.scss 588 B

1234567891011121314151617181920212223242526272829303132333435
  1. .window-header {
  2. padding: 14px 20px;
  3. border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
  4. display: flex;
  5. justify-content: space-between;
  6. align-items: center;
  7. }
  8. .window-header-title {
  9. max-width: calc(100% - 100px);
  10. .window-header-main-title {
  11. font-size: 20px;
  12. font-weight: bolder;
  13. overflow: hidden;
  14. text-overflow: ellipsis;
  15. white-space: nowrap;
  16. display: block;
  17. max-width: 50vw;
  18. }
  19. .window-header-sub-title {
  20. font-size: 14px;
  21. margin-top: 5px;
  22. }
  23. }
  24. .window-actions {
  25. display: inline-flex;
  26. }
  27. .window-action-button {
  28. margin-left: 10px;
  29. }