Skip to content

Commit 11ea905

Browse files
committed
polish components
1 parent 4e72103 commit 11ea905

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

examples/ecommerce-jewellery-store/src/App.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import Home from "@/pages/Home";
1010
import "@progress/kendo-theme-default/dist/all.css";
1111
import "@progress/kendo-theme-utils/dist/all.scss";
1212
import { SizedParent } from "./components/SizedParent";
13+
1314
function App() {
1415
return (
1516
<Router>

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export const AllProductsListView = () => {
152152
</section>
153153
</Layout>
154154
<Layout>
155-
<CustomSection>
155+
<section className="k-d-grid k-grid-cols-12 k-col-span-12 k-justify-content-center k-align-items-center k-gap-3">
156156
{
157157
listData.map((item) => {
158158
return (
@@ -183,8 +183,8 @@ export const AllProductsListView = () => {
183183
</div>
184184
)}
185185
<div>
186-
<div>{item.title}</div>
187-
<div className="k-d-flex k-justify-content-center k-gap-xl k-align-items-center">
186+
<div className="k-pt-2">{item.title}</div>
187+
<div className="k-d-flex k-justify-content-center k-gap-xl k-align-items-center k-pt-2">
188188
<span>
189189
{item.oldPrice && <span className="k-text-line-through" style={{
190190
paddingRight: "8px"
@@ -202,7 +202,7 @@ export const AllProductsListView = () => {
202202
);
203203
})
204204
}
205-
</CustomSection>
205+
</section>
206206
</Layout>
207207
</>
208208
);

0 commit comments

Comments
 (0)