Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

326
Views
Size and color of <md-icon> in Angular Material

I am successfully displaying an icon in my app, the account_circle icon, using Angular Material 2.0.0-beta.3, like this:

<md-icon>account_circle</md-icon>

I have included <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> in my app.

However, none of the recommended ways of increasing the size of the icon using the md classes seem to work. How do I change the size without resorting to a font size? And how can I change the color to be the same color as the input box placeholders?

Update

Ok, I've got the icon changing size by applying the font size directly to the icon itself, like this:

<div fxFlexAlign="center"><md-icon style="font-size:48px;">account_circle</md-icon></div>

However, now I have the problem that the icon is not completely centered — it looks like it's using a single quadrant of the image to calculate the centering so is not quite right. What is the best way to center an enlarged Material icon like this?

over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

You'll have to set the size of the md-icon, not only the font-size :

<md-icon style="font-size:48px; width: 48px; height:48px;">

or create a new class:

<md-icon class="md-48">

.md-48 {
  font-size:48px; 
  width: 48px;
  height:48px;
}
over 4 years ago · Santiago Trujillo Report

0

To change the md-icon size, add this to your CSS:

md-icon {
  font-size: 48px;
  width: 48px;
  height:48px;
}

To change the md-icon color, add this to your CSS:

md-icon {
  color: #FFF !important;
}
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!