Skip to content

Instantly share code, notes, and snippets.

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

  • Save mtermoul/01230043cded6f6d486149c79e146bc9 to your computer and use it in GitHub Desktop.

Select an option

Save mtermoul/01230043cded6f6d486149c79e146bc9 to your computer and use it in GitHub Desktop.
Vuetify styling using the style tag
<template>
<v-container>
<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>
</v-container>
</template>
<script>
export default {
name: 'HomePage'
}
</script>
<style>
ul {
list-style-type: square;
}
.v-card__title {
font-style: italic;
}
.v-card__text {
color: blue!important;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment