Compare commits

..

1 Commits
master ... dev

Author SHA1 Message Date
Flatlogic Bot
5b856f6079 Test #1 2025-03-06 23:44:53 +00:00
4 changed files with 10 additions and 5 deletions

View File

@ -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}`}

View File

@ -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; }

View File

@ -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);

View File

@ -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: