Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. .ppe {
  2. &-wapper {
  3. height: 90%;
  4. min-height: 90%;
  5. display: flex;
  6. flex-direction: column;
  7.  
  8. .row {
  9. display: flex;
  10. flex-direction: column;
  11. justify-content: center;
  12. }
  13. }
  14.  
  15. &-header{
  16. background: blue;
  17. min-height: 100px;
  18.  
  19. }
  20.  
  21. &-body {
  22. background: yellow;
  23. overflow-y: auto;
  24. flex: 1;
  25. }
  26.  
  27. &-footer {
  28. background: black;
  29. min-height: 10px;
  30. }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement