material-design
How to create a custom color theme with angular5 and angular materials
In order to use a custom hex palette for an Angular – Material you will need to define the different shades as well as contrast colors for the palette, even if you only want one color. I’d suggest using at least 3 colors (light, normal, dark) so that it works flawless with Material’s built in … Read more
How to organize material-ui Grid into rows?
You are close with the second block of code. I found that you could simply create 2 distinct Grid sections such as: <div> <Grid id=”top-row” container spacing={24}> <Grid item xs={4}> <Paper className={classes.paper}>Grid cell 1, 1</Paper> </Grid> <Grid item xs={4}> <Paper className={classes.paper}>Grid cell 2, 1</Paper> </Grid> </Grid> <Grid id=”bottom-row” container spacing={24}> <Grid item xs={4}> <Paper className={classes.paper}>Grid … Read more
How to use “vuetify” transitions on my components?
This wraps some card text in a transition. When I trigger the v-show=”show” model to true, the text slides in. <v-slide-y-transition> <v-card-text v-show=”show”> Example text </v-card-text> </v-slide-y-transition> You could have a button trigger it or even add an onCreate() method that triggers the show to true after the component loads.