Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5b856f6079 |
@ -32,9 +32,7 @@ export default function AsideMenuLayer({
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<aside
|
<aside id='asideMenu' style={{ borderRadius: 0 }} className={`${className} zzz lg:py-2 lg:pl-2 w-60 fixed flex z-40 top-0 h-screen transition-position overflow-hidden rounded-none`}>
|
||||||
id='asideMenu'
|
|
||||||
className={`${className} zzz lg:py-2 lg:pl-2 w-60 fixed flex z-40 top-0 h-screen transition-position overflow-hidden`}
|
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className={`flex-1 flex flex-col overflow-hidden dark:bg-dark-900 ${asideStyle}`}
|
className={`flex-1 flex flex-col overflow-hidden dark:bg-dark-900 ${asideStyle}`}
|
||||||
|
|||||||
@ -60,3 +60,5 @@ body {
|
|||||||
.introjs-prevbutton {
|
.introjs-prevbutton {
|
||||||
@apply bg-transparent border border-midnightBlueTheme-buttonColor text-midnightBlueTheme-buttonColor !important;
|
@apply bg-transparent border border-midnightBlueTheme-buttonColor text-midnightBlueTheme-buttonColor !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#asideMenu { border-radius: 0 !important; }
|
||||||
@ -53,9 +53,14 @@ export default function Login() {
|
|||||||
const title = 'My New Project';
|
const title = 'My New Project';
|
||||||
|
|
||||||
// Fetch Pexels image/video
|
// Fetch Pexels image/video
|
||||||
|
// Fetch custom Image/Video
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
async function fetchData() {
|
async function fetchData() {
|
||||||
const image = await getPexelsImage();
|
const image = {
|
||||||
|
src: { original: "https://flatlogic.com/assets/team/team-28e5f07f277765834c38e5fca2f800dda9008aae03886095a80294ccc0bc5dd7.jpg" },
|
||||||
|
photographer: "Flatlogic Team",
|
||||||
|
photographer_url: "https://flatlogic.com"
|
||||||
|
};
|
||||||
const video = await getPexelsVideo();
|
const video = await getPexelsVideo();
|
||||||
setIllustrationImage(image);
|
setIllustrationImage(image);
|
||||||
setIllustrationVideo(video);
|
setIllustrationVideo(video);
|
||||||
|
|||||||
@ -81,7 +81,7 @@ export const white: StyleObject = {
|
|||||||
|
|
||||||
export const midnightBlueTheme: StyleObject = {
|
export const midnightBlueTheme: StyleObject = {
|
||||||
aside:
|
aside:
|
||||||
'bg-midnightBlueTheme-800 text-midnightBlueTheme-text dark:text-white lg:rounded-lg',
|
'bg-midnightBlueTheme-800 text-midnightBlueTheme-text dark:text-white rounded-none',
|
||||||
asideScrollbars: 'aside-scrollbars-blue',
|
asideScrollbars: 'aside-scrollbars-blue',
|
||||||
asideBrand: 'text-blue-500 bg-white',
|
asideBrand: 'text-blue-500 bg-white',
|
||||||
asideMenuItem:
|
asideMenuItem:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user