home.css 487 B

1234567891011121314151617181920212223242526272829303132333435
  1. #homePage{
  2. flex-direction: column;
  3. position: relative;
  4. overflow-y: auto;
  5. }
  6. #homePage h1{
  7. text-decoration: underline;
  8. }
  9. #homeNewWorkout{
  10. position: absolute;
  11. top: 15px;
  12. right: 15px;
  13. }
  14. #workoutList{
  15. display: flex;
  16. flex-direction: column;
  17. width: 100%;
  18. }
  19. #workoutList button{
  20. margin: 15px 0;
  21. padding: 15px 0;
  22. width: 100%;
  23. }
  24. #homeLogout{
  25. position: absolute;
  26. bottom: 15px;
  27. left: 0;
  28. width: 100%;
  29. text-align: center;
  30. }