style.css 431 B

1234567891011121314151617181920212223242526272829303132
  1. body {
  2. font-family: Helvetica, Arial, sans-serif;
  3. }
  4. ul {
  5. padding: 0;
  6. }
  7. .user {
  8. height: 30px;
  9. line-height: 30px;
  10. padding: 10px;
  11. border-top: 1px solid #eee;
  12. overflow: hidden;
  13. transition: all .25s ease;
  14. }
  15. .user:last-child {
  16. border-bottom: 1px solid #eee;
  17. }
  18. .v-enter, .v-leave-to {
  19. height: 0;
  20. padding-top: 0;
  21. padding-bottom: 0;
  22. border-top-width: 0;
  23. border-bottom-width: 0;
  24. }
  25. .errors {
  26. color: #f00;
  27. }