Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
final-exam
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nawasan Wisitsingkhon
final-exam
Commits
47097b4e
Commit
47097b4e
authored
Oct 26, 2023
by
Nawasan Wisitsingkhon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix & updates: responsive for large screen;
parent
88a92b3e
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
12 deletions
+13
-12
AdminNavbar.js
src/components/AdminNavbar.js
+1
-1
Footer.js
src/components/Footer.js
+1
-1
Navbar.js
src/components/Navbar.js
+2
-2
ProductCard.js
src/components/ProductCard.js
+1
-2
member.js
src/pages/admin/member.js
+5
-3
stock.js
src/pages/admin/stock.js
+2
-2
index.js
src/pages/index.js
+1
-1
No files found.
src/components/AdminNavbar.js
View file @
47097b4e
...
...
@@ -246,7 +246,7 @@ function AdminNavbar(props) {
return
(
<>
<
AppBar
position
=
"fixed"
style
=
{{
backgroundColor
:
"black"
}}
>
<
Toolbar
>
<
Toolbar
className
=
"max-w-[1520px] 2xl:mx-auto 2xl:w-full box-border"
>
<
Typography
variant
=
"h6"
noWrap
...
...
src/components/Footer.js
View file @
47097b4e
...
...
@@ -5,7 +5,7 @@ import React from "react";
export
default
function
Footer
()
{
return
(
<
Box
className
=
"md:flex text-center justify-end items-center"
className
=
"md:flex text-center justify-end items-center
max-w-[1520px] mx-auto
"
sx
=
{{
p
:
3
,
}}
...
...
src/components/Navbar.js
View file @
47097b4e
...
...
@@ -307,11 +307,11 @@ function Navbar(props) {
return
(
<>
<
AppBar
className
=
"shadow-sm bg-white/90"
className
=
"shadow-sm bg-white/90
px-0
"
color
=
"inherit"
position
=
"fixed"
>
<
Toolbar
>
<
Toolbar
className
=
"max-w-[1520px] 2xl:mx-auto 2xl:w-full box-border"
>
<
Typography
variant
=
"h6"
noWrap
...
...
src/components/ProductCard.js
View file @
47097b4e
...
...
@@ -29,11 +29,10 @@ export default function ProductCard({
*/
return
(
<
div
className
=
"p-1 my-3 w-[300px] mx-auto inline-block bg-white rounded hover:shadow duration-300"
className
=
"p-1 my-3 w-[300px]
sm:w-[270px] xl:w-[320px]
mx-auto inline-block bg-white rounded hover:shadow duration-300"
sx
=
{{
m
:
1
,
px
:
1
,
width
:
300
,
// height: 500,
display
:
"inline-block"
,
}}
...
...
src/pages/admin/member.js
View file @
47097b4e
...
...
@@ -7,8 +7,6 @@ import {
Box
,
Button
,
FormControl
,
FormLabel
,
InputLabel
,
MenuItem
,
Paper
,
Select
,
...
...
@@ -89,6 +87,7 @@ export default function Member() {
{
message
.
message
}
<
/Alert
>
<
/Snackbar
>
<
Box
sx
=
{{
maxWidth
:
1520
,
mx
:
"auto"
}}
>
<
Box
sx
=
{{
m
:
1
,
textAlign
:
"right"
}}
>
<
FormControl
>
<
Select
...
...
@@ -147,7 +146,9 @@ export default function Member() {
<
/TableCell
>
<
TableCell
sx
=
{{
textAlign
:
"center"
}}
>
<
Button
onClick
=
{()
=>
setDeleteState
({
open
:
true
,
id
:
user
.
id
})}
onClick
=
{()
=>
setDeleteState
({
open
:
true
,
id
:
user
.
id
})
}
color
=
"error"
>
ลบ
...
...
@@ -158,6 +159,7 @@ export default function Member() {
<
/TableBody
>
<
/Table
>
<
/Paper
>
<
/Box
>
{
deleteState
.
open
&&
(
<
DeleteMember
open
=
{
deleteState
.
open
}
...
...
src/pages/admin/stock.js
View file @
47097b4e
...
...
@@ -54,7 +54,7 @@ export default function Stock() {
if
(
router
.
query
?.
cat
)
{
setCategory
(
router
.
query
.
cat
);
}
else
{
setCategory
(
''
);
setCategory
(
""
);
}
},
[
router
]);
...
...
@@ -64,7 +64,7 @@ export default function Stock() {
<
title
>
รายการสินค้า
|
admin
<
/title
>
<
/Head
>
<
Box
>
<
Box
sx
=
{{
mb
:
2
,
textAlign
:
"right"
}}
>
<
Box
sx
=
{{
m
axWidth
:
1520
,
mx
:
"auto"
,
m
b
:
2
,
textAlign
:
"right"
}}
>
<
Button
onClick
=
{()
=>
setModal
(
!
modal
)}
>
<
AddShoppingCart
/>
เพิ่มสินค้า
...
...
src/pages/index.js
View file @
47097b4e
...
...
@@ -242,7 +242,7 @@ export default function Home() {
))}
<
/div
>
)
:
(
<
Paper
className
=
"shadow-none"
sx
=
{{
p
:
2
,
textAlign
:
"center"
}}
>
<
Paper
className
=
"
max-w-[1520px] mx-auto
shadow-none"
sx
=
{{
p
:
2
,
textAlign
:
"center"
}}
>
{
algorithm
.
length
?
"ไม่พบรายการ"
:
<
CircularProgress
/>
}
<
/Paper
>
)}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment