-
Notifications
You must be signed in to change notification settings - Fork 27
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
3539479
commit 8fbf611
Showing
14 changed files
with
959 additions
and
462 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,47 @@ | ||
@import "tailwindcss/base"; | ||
|
||
@import "tailwindcss/components"; | ||
|
||
@import "tailwindcss/utilities"; | ||
|
||
h1{ | ||
@apply text-2xl font-black leading-relaxed | ||
} | ||
h2{ | ||
@apply text-xl font-bold leading-relaxed | ||
} | ||
|
||
h3{ | ||
@apply text-lg font-medium leading-relaxed | ||
} | ||
|
||
p{ | ||
@apply text-base font-normal leading-normal | ||
} | ||
|
||
.ProseMirror{ | ||
@apply bg-white appearance-none border-2 border-gray-200 rounded-t-none w-full py-2 mt-2 px-4 text-gray-700 leading-tight | ||
} | ||
.ProseMirror:focus{ | ||
@apply shadow-outline outline-none border-blue-300 z-10 | ||
} | ||
|
||
.ProseMirror > ul{ | ||
@apply list-disc ml-5 mb-3 | ||
} | ||
|
||
.ProseMirror > ol{ | ||
@apply list-decimal ml-5 mb-3 | ||
} | ||
.menubar__button{ | ||
@apply py-1 pl-2 font-bold rounded inline-flex items-center mr-3 bg-white shadow | ||
} | ||
.menubar_button:hover{ | ||
@apply bg-gray-400 | ||
} | ||
.menubar__button.is-active{ | ||
@apply py-1 pl-2 bg-blue-400 font-bold | ||
} | ||
.menubar{ | ||
@apply flex justify-start mt-3 | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.