window.scss 631 B

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