Repo for the search and displace core module including the interface to select files and search and displace operations to run on them. https://searchanddisplace.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.1 KiB

3 years ago
  1. @import "variables";
  2. .page-wrapper {
  3. flex: 1;
  4. }
  5. .header {
  6. // background: #ffffff;
  7. background: $header-background;
  8. height: $header-height;
  9. padding: 0 2rem;
  10. border-bottom: 1px solid #dee2e6;
  11. display: -ms-flexbox;
  12. display: flex;
  13. -ms-flex-align: center;
  14. align-items: center;
  15. -ms-flex-pack: justify;
  16. justify-content: space-between;
  17. color: #495057;
  18. .left {
  19. display: -ms-flexbox;
  20. display: flex;
  21. -ms-flex-align: center;
  22. align-items: center;
  23. }
  24. }
  25. .footer {
  26. // background: #ffffff;
  27. background: $footer-background;
  28. height: $footer-height;
  29. border-top: 1px solid #dee2e6;
  30. border-bottom: 1px solid #dee2e6;
  31. padding: 0 2rem;
  32. display: -ms-flexbox;
  33. display: flex;
  34. -ms-flex-align: center;
  35. align-items: center;
  36. -ms-flex-pack: justify;
  37. justify-content: space-between;
  38. flex-shrink: 0;
  39. .left {
  40. display: -ms-flexbox;
  41. display: flex;
  42. -ms-flex-align: center;
  43. align-items: center;
  44. }
  45. .right {
  46. font-size: 0.875rem;
  47. color: #6c757d;
  48. }
  49. }
  50. .content {
  51. padding: $content-padding;
  52. }