VFooter.css 983 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .v-footer {
  2. align-items: center;
  3. display: flex;
  4. flex: 1 1 auto;
  5. padding: 8px 16px;
  6. position: relative;
  7. transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  8. transition-property: height, width, transform, max-width, left, right, top, bottom;
  9. }
  10. .v-footer {
  11. border-color: rgba(var(--v-border-color), var(--v-border-opacity));
  12. border-style: solid;
  13. border-width: 0;
  14. }
  15. .v-footer--border {
  16. border-width: thin;
  17. box-shadow: none;
  18. }
  19. .v-footer {
  20. box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
  21. }
  22. .v-footer--absolute {
  23. position: absolute;
  24. }
  25. .v-footer--fixed {
  26. position: fixed;
  27. }
  28. .v-footer {
  29. border-radius: 0;
  30. }
  31. .v-footer {
  32. background: rgb(var(--v-theme-surface));
  33. color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
  34. }
  35. .v-footer--rounded {
  36. border-radius: 4px;
  37. }