Skip to content

Instantly share code, notes, and snippets.

View mtermoul's full-sized avatar

Mohamed Termoul mtermoul

View GitHub Profile
@mtermoul
mtermoul / HomePage.vue
Created February 15, 2020 21:55
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>
@mtermoul
mtermoul / HomePage.vue
Created February 15, 2020 21:39
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>
@mtermoul
mtermoul / HomePage.vue
Last active February 15, 2020 21:37
Vuetify components styling using props
<template>
<v-container px-5>
<v-row justify="center">
<v-col cols="6">
<v-card color="green">
<v-card-title>Chocolate cheesecake recipe</v-card-title>
<c-card-text>
<ul>
<li>5 eggs</li>
<li>1 cup of warm milk</li>