main.css 930 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. ::-webkit-scrollbar {
  2. width: 2px;
  3. height: 2px;
  4. }
  5. ::-webkit-scrollbar-track {
  6. background: transparent;
  7. }
  8. ::-webkit-scrollbar-thumb {
  9. background: rgba(0, 0, 0, .1);
  10. }
  11. .header {
  12. position: fixed;
  13. top: 0;
  14. left: 0;
  15. right: 0;
  16. z-index:2;
  17. }
  18. .bottom_nav .mu-bottom-nav-shift-wrapper {
  19. display: flex;
  20. justify-content: space-around;
  21. }
  22. .bottom_nav {
  23. height: 5rem;
  24. position: fixed;
  25. bottom: 0;
  26. left: 0;
  27. right: 0;
  28. }
  29. .content {
  30. overflow: auto;
  31. width: 100%;
  32. padding-top: 49px;
  33. padding-bottom: 51px;
  34. display: flex;
  35. flex-direction: column;
  36. justify-content: space-between;
  37. height: 100vh;
  38. }
  39. .tab, .tabs {
  40. position: fixed;
  41. border:0;
  42. }
  43. .box-shadow {
  44. box-shadow: 0 4px 6px rgba(0, 0, 0, .117647);
  45. }
  46. main {
  47. flex: 1;
  48. display: flex;
  49. flex-direction: column;
  50. justify-content: center;
  51. align-items: center;
  52. padding: 1rem;
  53. }
  54. .vueco-btn {
  55. width: 100%;
  56. bottom: 0;
  57. }
  58. a{
  59. color: black;
  60. }