Skip to content

Commit aac6800

Browse files
committed
removecolor palette button
1 parent fcfba30 commit aac6800

File tree

3 files changed

+24
-6
lines changed

3 files changed

+24
-6
lines changed

examples/ecommerce-jewellery-store/src/components/Header.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import {
1414
searchIcon,
1515
userIcon,
1616
cartIcon,
17-
paletteIcon,
1817
} from "@progress/kendo-svg-icons";
1918
import viloraLogo from "@/assets/vilora-logo.png";
2019
import items from "../data/items";
@@ -25,7 +24,7 @@ import { AppBar, AppBarSection } from "@progress/kendo-react-layout";
2524
const Header: React.FC = () => {
2625
return (
2726
<>
28-
<AppBar themeColor="inherit">
27+
<AppBar themeColor="inherit k-justfity-content-center">
2928
<AppBarSection
3029
className="k-align-items-center"
3130
style={{ paddingLeft: "50px" }}
@@ -37,6 +36,8 @@ const Header: React.FC = () => {
3736
</Menu>
3837
</AppBarSection>
3938

39+
<AppBarSpacer style={{ width: 32 }} />
40+
4041
<AppBarSection>
4142
<TextBox
4243
placeholder="Search"
@@ -55,7 +56,6 @@ const Header: React.FC = () => {
5556
<div style={{ marginLeft: "20px" }}>
5657
<Button svgIcon={userIcon} fillMode="flat" className="k-ml-2" />
5758
<Button svgIcon={cartIcon} fillMode="flat" className="k-ml-2" />
58-
<Button svgIcon={paletteIcon} fillMode="flat" className="k-ml-2" />
5959
</div>
6060
</AppBarSection>
6161

examples/ecommerce-jewellery-store/src/pages/AllProductsListView.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ export const AllProductsListView = () => {
3636
const cards: CardDescriptor[] = [
3737
{
3838
img: necklace,
39-
collectionText: 'Collection \"SERENE\"',
39+
collectionText: 'Collection "SERENE"',
4040
},
4141
{
4242
img: ring,
43-
collectionText: 'Collection \"AURELIA\"',
43+
collectionText: 'Collection "AURELIA"',
4444
},
4545
{
4646
img: jewel,
47-
collectionText: 'Collection \"RAVINA\"',
47+
collectionText: 'Collection "RAVINA"',
4848
},
4949
];
5050

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ESNext",
4+
"module": "ESNext",
5+
"moduleResolution": "Node",
6+
"strict": true,
7+
"esModuleInterop": true,
8+
"skipLibCheck": true,
9+
"forceConsistentCasingInFileNames": true,
10+
"resolveJsonModule": true,
11+
"isolatedModules": true,
12+
"noEmit": true
13+
},
14+
"include": [
15+
"src/**/*"
16+
]
17+
}
18+

0 commit comments

Comments
 (0)