Section.vue 375 B

12345678910111213141516171819
  1. <template>
  2. <v-card class="parameters-page-card">
  3. <slot />
  4. </v-card>
  5. </template>
  6. <style scoped lang="scss">
  7. .parameters-page-card {
  8. background-color: rgb(var(--v-theme-neutral-very-soft));
  9. color: rgb(var(--v-theme-on-neutral-very-soft));
  10. padding: 24px;
  11. margin: 28px auto;
  12. max-width: 1200px;
  13. @media (max-width: 600px) {
  14. max-width: 95%;
  15. }
  16. }
  17. </style>