Skip to content

Commit e626849

Browse files
chore: update style loading, polish implementation
1 parent ed03d9f commit e626849

File tree

22 files changed

+59
-624
lines changed

22 files changed

+59
-624
lines changed

examples/coffee-warehouse-nextjs/app/App.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,6 @@ body {
1111
}
1212
}
1313

14-
@import "./styles/main.scss";
14+
header {
15+
background-image: url('./assets/header-bg.png');
16+
}

examples/coffee-warehouse-nextjs/app/components/Chart.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
'use client'
1+
"use client"
22
import React from 'react';
33
import * as PropTypes from 'prop-types';
44

examples/coffee-warehouse-nextjs/app/components/DrawerRouterContainer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
'use client'
1+
"use client"
22
import React from 'react';
33
import { useNavigate } from 'react-router-dom';
44
import { Drawer, DrawerContent } from '@progress/kendo-react-layout';

examples/coffee-warehouse-nextjs/app/components/Grid.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
'use client'
1+
"use client"
22
import React from 'react';
33
import * as PropTypes from 'prop-types';
44

examples/coffee-warehouse-nextjs/app/components/GridCells.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
'use client'
1+
"use client"
22
import * as React from 'react';
33

44
import {

examples/coffee-warehouse-nextjs/app/components/Header.jsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import { locales } from "./../resources/locales";
1212

1313
import headerBg from "../assets/header-bg.png";
1414
import userAvatar from "../assets/user-avatar.jpg";
15+
import DrawerLayout from "../drawer/layout";
1516
const noMessage = "message not defined";
1617

1718
export const Header = (props) => {
@@ -37,12 +38,8 @@ export const Header = (props) => {
3738
}, []);
3839

3940
return (
40-
<header className="header" style={{ backgroundImage: `url(${headerBg})` }}>
41+
<header className="header">
4142
<div className="nav-container">
42-
<div className="menu-button">
43-
<span className={"k-icon k-i-menu"} onClick={onButtonClick} />
44-
</div>
45-
4643
<div className="title">
4744
<h1>
4845
{localizationService.toLanguageString(

examples/coffee-warehouse-nextjs/app/components/form/DropDownList.jsx

Lines changed: 0 additions & 62 deletions
This file was deleted.

examples/coffee-warehouse-nextjs/app/components/form/Editor.jsx

Lines changed: 0 additions & 59 deletions
This file was deleted.

examples/coffee-warehouse-nextjs/app/components/form/Input.jsx

Lines changed: 0 additions & 51 deletions
This file was deleted.

examples/coffee-warehouse-nextjs/app/components/form/MaskedTextBox.jsx

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)