-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
208f02f
commit 23ddc56
Showing
15 changed files
with
174 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
refine-vite/plugins/auth-provider-custom/src/pages/forgotPassword/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
refine-vite/plugins/auth-provider-custom/src/pages/login/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
refine-vite/plugins/auth-provider-custom/src/pages/register/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"name": "Tailwind CSS", | ||
"url": "https://refine.dev/docs/guides-concepts/general-concepts/#headless-concept" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"dependencies": { | ||
"tailwindcss": "^3.4.3", | ||
"postcss": "^8.4.38", | ||
"autoprefixer": "^10.4.19" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export default { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
body { | ||
margin: 0px; | ||
} | ||
|
||
table { | ||
border-spacing: 0; | ||
border: 1px solid black; | ||
} | ||
|
||
table th, | ||
td { | ||
margin: 0; | ||
padding: 0.5rem; | ||
border-bottom: 1px solid black; | ||
border-right: 1px solid black; | ||
} | ||
|
||
table tr:last-child td { | ||
border-bottom: 0; | ||
} | ||
|
||
table th, | ||
td { | ||
margin: 0; | ||
padding: 0.5rem; | ||
border-bottom: 1px solid black; | ||
border-right: 1px solid black; | ||
} | ||
|
||
table th:last-child, | ||
td:last-child { | ||
border-right: 0; | ||
} | ||
|
||
.layout { | ||
display: flex; | ||
gap: 16px; | ||
} | ||
|
||
@media screen and (max-width: 751px) { | ||
.layout { | ||
display: block; | ||
} | ||
} | ||
|
||
.layout .content { | ||
display: flex; | ||
flex-direction: column; | ||
flex-grow: 1; | ||
} | ||
|
||
.breadcrumb { | ||
display: flex; | ||
gap: 24px; | ||
list-style-type: "/ "; | ||
padding: 8px 16px; | ||
border-bottom: 1px solid lightgray; | ||
} | ||
|
||
.breadcrumb a { | ||
color: blue; | ||
text-decoration: none; | ||
} | ||
|
||
.menu { | ||
flex-shrink: 0; | ||
padding: 8px 16px; | ||
border-right: 1px solid lightgray; | ||
} | ||
|
||
.menu a { | ||
color: black; | ||
} | ||
|
||
.menu .active { | ||
font-weight: bold; | ||
} | ||
|
||
@media screen and (max-width: 751px) { | ||
.menu { | ||
border-right: none; | ||
border-bottom: 1px solid lightgray; | ||
} | ||
} | ||
|
||
.menu ul { | ||
padding-left: 16px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/** @type {import('tailwindcss').Config} */ | ||
export default { | ||
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], | ||
theme: { | ||
extend: {}, | ||
}, | ||
plugins: [], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters