main.scss 391 B

12345678910111213141516171819202122232425262728
  1. html,
  2. body,
  3. #app {
  4. height: 100%;
  5. margin: 0;
  6. padding: 0;
  7. // background: #ffff;
  8. background-color: #f2f2f2;
  9. }
  10. body {
  11. // padding-top: 1vh;
  12. background-color: #f2f2f2;
  13. }
  14. html.dark {
  15. background: #121212;
  16. }
  17. .border_bottom {
  18. border-bottom: 2px solid #666;
  19. border-top: 2px solid #666;
  20. }
  21. // 解决苹果手机点击input框放大的问题
  22. input {
  23. font-size: 16px !important;
  24. }