Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
61de7c8a
Commit
61de7c8a
authored
Dec 18, 2023
by
Steven
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: fix demo banner
parent
d6656db2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
8 deletions
+11
-8
DemoBanner.tsx
web/src/components/DemoBanner.tsx
+1
-1
global.css
web/src/css/global.css
+6
-3
Root.tsx
web/src/layouts/Root.tsx
+4
-4
No files found.
web/src/components/DemoBanner.tsx
View file @
61de7c8a
...
...
@@ -23,7 +23,7 @@ const DemoBanner: React.FC = () => {
if
(
!
state
.
show
)
return
null
;
return
(
<
div
className=
"
z-10 flex flex-row items-center justify-center w
-full py-2 text-sm sm:text-lg font-medium dark:text-gray-300 bg-white dark:bg-zinc-700 shadow"
>
<
div
className=
"
mt-4 flex flex-row items-center justify-center w-full rounded-lg sm:rounded
-full py-2 text-sm sm:text-lg font-medium dark:text-gray-300 bg-white dark:bg-zinc-700 shadow"
>
<
div
className=
"w-full max-w-6xl px-4 flex flex-row justify-between items-center gap-x-3"
>
<
span
>
✨ A lightweight, self-hosted memo hub. Open Source and Free forever. ✨
</
span
>
<
a
className=
"btn-primary shadow"
href=
"https://usememos.com/docs/install/self-hosting"
target=
"_blank"
>
...
...
web/src/css/global.css
View file @
61de7c8a
html
,
html
{
@apply
w-full
h-full
p-0
m-0;
}
body
{
@apply
text-base
w-full
min-h-full
bg-zinc-100
dark
:
bg-zinc-800
;
@apply
text-base
w-full
min-h-full
p-0
m-0
bg-zinc-100
dark
:
bg-zinc-800
;
}
#root
{
@apply
w-full
h-auto
overflow-auto;
@apply
w-full
min-h-full
overflow-auto;
}
web/src/layouts/Root.tsx
View file @
61de7c8a
...
...
@@ -8,16 +8,16 @@ function Root() {
return
(
<
div
className=
"w-full min-h-full"
>
<
div
className=
"w-full h-auto flex flex-col justify-start items-center"
>
<
DemoBanner
/>
</
div
>
<
div
className=
"w-full sm:pl-56 mx-auto flex flex-row justify-center items-start"
>
{
sm
&&
(
<
div
className=
"hidden sm:block fixed top-0 left-0 w-56 border-r dark:border-zinc-800 h-full bg-zinc-50 dark:bg-zinc-700 dark:bg-opacity-40 transition-all hover:shadow-xl"
>
<
Navigation
/>
</
div
>
)
}
<
main
className=
"w-full sm:px-4 min-h-screen flex-grow shrink flex flex-col justify-start items-center"
>
<
main
className=
"w-full sm:px-4 h-auto flex-grow shrink flex flex-col justify-start items-center"
>
<
div
className=
"w-full px-4 h-auto flex flex-col justify-start items-center"
>
<
DemoBanner
/>
</
div
>
<
Outlet
/>
</
main
>
</
div
>
...
...
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