Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions projects/erp-hierarchical-grid/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<title> Inventory</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700" rel="stylesheet">
<link rel="stylesheet" href="./node_modules/igniteui-webcomponents-grids/grids/themes/light/material.css" />
<link rel="stylesheet" href="./styles.scss" />
</head>
<body class="ig-scrollbar ig-typography">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { useState, useEffect } from "react";
import { IgrBadge, IgrIcon, IgrRating, registerIcon } from "igniteui-react";
import "igniteui-react-grids/grids/themes/light/material.css";
import {
IgrHierarchicalGrid,
IgrColumn,
Expand Down
1 change: 1 addition & 0 deletions projects/finance-grid/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles.scss" />
<link rel="stylesheet" href="./node_modules/igniteui-webcomponents-grids/grids/themes/light/bootstrap.css" />
</head>
<body class="ig-scrollbar ig-typography">
<div id="root"></div>
Expand Down
1 change: 0 additions & 1 deletion projects/finance-grid/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import {
} from "igniteui-react";
import { dataService } from "./services/data.service";
import { TRENDING_DOWN, TRENDING_UP } from "./assets/icons/icons";
import 'igniteui-react-grids/grids/themes/light/bootstrap.css'

function FinanceGrid() {
const updateTimerInMs = 3000;
Expand Down
1 change: 1 addition & 0 deletions projects/sales-grid/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<link href='https://fonts.googleapis.com/icon?family=Material+Icons' rel='stylesheet'>
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="stylesheet" href="./index.scss">
<link rel="stylesheet" href="./node_modules/igniteui-webcomponents-grids/grids/themes/light/indigo.css" />
</head>
<body class="ig-scrollbar ig-typography">
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
1 change: 0 additions & 1 deletion projects/sales-grid/src/app/sales-grid/sales-grid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import {
} from 'igniteui-react-grids';
import { SalesDataService } from '../services/data.service';

import 'igniteui-react-grids/grids/themes/light/indigo.css';
import './sales-grid.scss';

import ARROW_DOWN_SVG from "../data/icons/arrow_drop_down.svg";
Expand Down