Advertisement
shadiff

dashboard css

Sep 4th, 2023
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. .Layout{
  2. height: 100vh;
  3. display: grid;
  4. grid-template-columns: 300px 1fr;
  5. grid-template-rows: 60px 1fr;
  6. }
  7. .header{
  8. background-color: #fff;
  9. grid-column: 1 / 3;
  10. grid-row: 1 / 2;
  11.  
  12. }
  13. .sidebar{
  14. background-color: #0018A8;
  15. grid-column: 1 / 2;
  16. grid-row: 2 / 3;
  17. }
  18. .main{
  19. background-color: #c3c5ca;
  20. grid-column: 2 / 3;
  21. grid-row: 2 /3;
  22. }
  23. .main-header{
  24. grid-column: 1 / 2;
  25. grid-row: 1 / 3;
  26. background-color: aqua;
  27. }
  28. .main-content{
  29. grid-row: 2 / 3;
  30. grid-column: 2/ 3;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement