File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
examples/ecommerce-jewellery-store/src Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import Home from "@/pages/Home";
1010import "@progress/kendo-theme-default/dist/all.css" ;
1111import "@progress/kendo-theme-utils/dist/all.scss" ;
1212import { SizedParent } from "./components/SizedParent" ;
13+
1314function App ( ) {
1415 return (
1516 < Router >
Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments