Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
610
Font size for elements in an igx-grid
posted

I would like to increase the font for rows in an Angular igx-grid.  The default is a little too light.  I've searched through your forums and don't believe there's an example.  Would it be possible to provide one?  I'm using IgniteUI v 7.2.3

Thanks,

Jeff

Parents
No Data
Reply
  • 1080
    Offline posted

    Hello Jeff,

    Thank you for posting in our community.

    You can change the font size on a component level by targeting the appropriate predefined class:

    :host {
        ::ng-deep {
            .igx-grid__td-text {
                font-size: 1.2rem;
    		}
    	}
    }

Children