VSheet.css 842 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .v-sheet {
  2. display: block;
  3. }
  4. .v-sheet {
  5. border-color: rgba(var(--v-border-color), var(--v-border-opacity));
  6. border-style: solid;
  7. border-width: 0;
  8. }
  9. .v-sheet--border {
  10. border-width: thin;
  11. box-shadow: none;
  12. }
  13. .v-sheet {
  14. 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));
  15. }
  16. .v-sheet--absolute {
  17. position: absolute;
  18. }
  19. .v-sheet--fixed {
  20. position: fixed;
  21. }
  22. .v-sheet--relative {
  23. position: relative;
  24. }
  25. .v-sheet--sticky {
  26. position: sticky;
  27. }
  28. .v-sheet {
  29. border-radius: 0;
  30. }
  31. .v-sheet {
  32. background: rgb(var(--v-theme-surface));
  33. color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
  34. }
  35. .v-sheet--rounded {
  36. border-radius: 4px;
  37. }