-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ChangelogModal Component (#6126)
Co-authored-by: Augustin Mauroy <[email protected]> Co-authored-by: Caner Akdas <[email protected]> Co-authored-by: Augustin Mauroy <[email protected]> Co-authored-by: Claudio W <[email protected]> Co-authored-by: Claudio Wunder <[email protected]>
- Loading branch information
1 parent
84e95c3
commit 23202f6
Showing
27 changed files
with
573 additions
and
37 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
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,108 @@ | ||
.overlay { | ||
@apply fixed | ||
inset-0 | ||
flex | ||
justify-center | ||
bg-white | ||
bg-opacity-90 | ||
backdrop-blur-lg | ||
dark:bg-neutral-950 | ||
dark:bg-opacity-80; | ||
|
||
.content { | ||
@apply relative | ||
mx-4 | ||
my-4 | ||
inline-flex | ||
w-full | ||
flex-col | ||
overflow-scroll | ||
rounded | ||
border | ||
border-neutral-200 | ||
bg-white | ||
p-8 | ||
focus:outline-none | ||
dark:bg-neutral-950 | ||
sm:mt-20 | ||
sm:p-12 | ||
lg:w-2/3 | ||
xl:w-1/2; | ||
} | ||
|
||
.close { | ||
@apply absolute | ||
right-3 | ||
top-3 | ||
block | ||
h-6 | ||
w-6 | ||
cursor-pointer | ||
sm:hidden; | ||
} | ||
|
||
.title { | ||
@apply mb-2 | ||
text-3xl | ||
font-semibold | ||
text-neutral-900 | ||
dark:text-white; | ||
} | ||
|
||
.description { | ||
@apply mb-4 | ||
text-lg | ||
font-regular | ||
text-neutral-800 | ||
dark:text-neutral-200; | ||
} | ||
|
||
.authors { | ||
@apply mb-8 | ||
flex | ||
flex-wrap | ||
items-center | ||
gap-4; | ||
|
||
a { | ||
@apply flex | ||
items-center | ||
gap-1 | ||
text-xs | ||
text-neutral-600 | ||
underline | ||
visited:text-neutral-600; | ||
} | ||
|
||
svg { | ||
@apply h-3 | ||
w-3 | ||
text-neutral-600; | ||
} | ||
} | ||
|
||
.wrapper { | ||
@apply flex | ||
flex-col | ||
gap-4; | ||
|
||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
p, | ||
a { | ||
@apply text-neutral-900 | ||
dark:text-white; | ||
} | ||
|
||
a { | ||
@apply underline; | ||
} | ||
|
||
pre { | ||
@apply overflow-auto; | ||
} | ||
} | ||
} |
Oops, something went wrong.