Guest User

Untitled

a guest
Apr 24th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. .container {
  2. border: 1px solid blue;
  3. height: 300px;
  4. width: 600px;
  5.  
  6. .table {
  7. height: 100%;
  8.  
  9. .header {
  10. height: 100px;
  11. display: flex;
  12. overflow-x: scroll;
  13.  
  14. .item {
  15. border: 1px solid green;
  16. flex: 0 0 200px;
  17. }
  18. }
  19.  
  20. .body {
  21. height: calc(100% - 100px);
  22. flex-direction: column;
  23. overflow-y: scroll;
  24. overflow-x: scroll;
  25.  
  26. .row {
  27. display: flex;
  28. flex-flow: row nowrap;
  29.  
  30. .item {
  31. border: 1px solid red;
  32. display: flex;
  33. flex-flow: row nowrap;
  34. flex: 0 0 200px;
  35.  
  36. &.label {
  37. background-color: grey;
  38. color: white;
  39. }
  40. }
  41. }
  42. }
  43. }
  44. }
Add Comment
Please, Sign In to add comment