page-header.less 558 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // Page header
  3. // --------------------------------------------------
  4. // Common styles
  5. .page-header {
  6. margin: 0px;
  7. margin-bottom: @line-height-computed;
  8. }
  9. // Small displays
  10. @media screen and (max-width: @screen-sm-max) {
  11. .container {
  12. h1 {
  13. font-size: @font-size-large * 1.25;
  14. }
  15. &>.btn {
  16. float: right;
  17. margin-top: @line-height-computed - 7px;
  18. }
  19. &>.btn-dropdown-toggle {
  20. .material-icon {
  21. width: 24px;
  22. height: 24px;
  23. font-size: 24px;
  24. line-height: 24px;
  25. }
  26. }
  27. }
  28. }