Answers for "material angular"

8

angular npm angular material

npm i @angular/material
Posted by: Guest on March-28-2020
17

angular material

//To take advantage of Angular Material install it in the terminal
$ ng add @angular/material
//Choose the options that will be presented to you
Posted by: Guest on November-11-2020
0

como configurar los estilos para utilizar angular material

/* Crear un archivo de estilos styles.scss
   Agregar el tema que se desea. */
@import '~@angular/material/prebuilt-themes/indigo-pink.css';
html, body { /* Hacer los cambios de estilo deseados */
  margin: 2px;
  padding: 1px;
}
body{
  background-color: #f3f3f3;
  font-family: Roboto, 'Helvetice New', 'Arial', sans-serif
}
/* En angular-cli.json agregar el archivo de estilos 
   recién creado. */
"styles": [ 
  "styles.scss" 
]
Posted by: Guest on April-14-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language