Skip to content

Instantly share code, notes, and snippets.

@mtermoul
Created February 15, 2020 21:39
Show Gist options
  • Select an option

  • Save mtermoul/5a476d7373e6f01e14840d38911d4901 to your computer and use it in GitHub Desktop.

Select an option

Save mtermoul/5a476d7373e6f01e14840d38911d4901 to your computer and use it in GitHub Desktop.
Vuetify styling using the class property
<template>
<v-row justify="center">
<v-col cols="6">
<v-card color="green">
<v-card-title class="green darken-4">Chocolate cheesecake recipe</v-card-title>
<v-card-text class="pt-2">
<ul class="subtitle-2">
<li>5 eggs</li>
<li>1 cup of warm milk</li>
<li>2 cups of flour</li>
<li>1/2 cup of sugar</li>
<li class="red--text">1 lbs Philadelphia cream cheese </li>
<li>...</li>
</ul>
</v-card-text>
</v-card>
</v-col>
</v-row>
</template>
<script>
export default {
name: 'HomePage'
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment