App.module.css 474 B

12345678910111213141516171819202122232425262728293031323334
  1. .page {
  2. height: 100%;
  3. width: 100%;
  4. display: flex;
  5. flex-flow: column nowrap;
  6. justify-content: space-between;
  7. }
  8. .header {
  9. width: 100%;
  10. display: block;
  11. text-align: center;
  12. border-bottom: 2px solid #555;
  13. }
  14. .footer {
  15. bottom: 0px;
  16. width: 100%;
  17. display: block;
  18. text-align: center;
  19. border-top: 2px solid #555;
  20. }
  21. .state {
  22. height: 100%;
  23. width: 100%;
  24. }
  25. .loading {
  26. position: absolute;
  27. left: 50%;
  28. top: 50%;
  29. transform: translate(-50%, -50%);
  30. }