Posts

Showing posts with the label angular-material-6

Why aren't my Angular 6 buttons rippling?

Image
Clash Royale CLAN TAG #URR8PPP Why aren't my Angular 6 buttons rippling? lately I have been coding the frontend of my application. I have been utilizing Angular 6 to build it, but I have noticed a small deviation in my buttons. They darken when you hover over them, but they do not have any ripple effect when you click them. Here is my app.module.ts. import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule} from '@angular/platform-browser/animations'; import { NgModule } from '@angular/core'; import {RouterModule} from '@angular/router'; import {Routes} from '@angular/router'; import { AppComponent } from './app.component'; import { MatToolbarModule, MatButtonModule, MatInputModule, MatIconModule, MatSelectModule, MatTableModule, MatGridListModule, MatCardModule, MatMenuModule, MatFormFieldModule, MatOptionModule } from '@angular/material'; import { PlaceholderComponent } from './place...