index.scss 270 B

1234567891011121314151617181920212223242526
  1. #app {
  2. height: 100vh;
  3. width: 100vw;
  4. overflow: hidden;
  5. }
  6. :root {
  7. --view-bg-color: #f7f7f7;
  8. }
  9. a {
  10. text-decoration: none;
  11. }
  12. input,
  13. button {
  14. outline: none;
  15. }
  16. input {
  17. &:-webkit-autofill {
  18. box-shadow: 0 0 0px 1000px white inset;
  19. }
  20. }
  21. @import "./animation.scss";