Skip to content
Snippets Groups Projects
Commit 3bc8e730 authored by Yannis Barlas's avatar Yannis Barlas
Browse files

Merge branch 'react-prosemirror' of gitlab.coko.foundation:xpub/xpub into react-prosemirror

parents 243111df d7b0e49f
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,8 @@ ...@@ -4,7 +4,8 @@
.main { .main {
display: flex; display: flex;
align-items: center; align-items: bottom;
justify-content: flex-start;
} }
.main, .main,
...@@ -33,10 +34,10 @@ ...@@ -33,10 +34,10 @@
font-size: 1.6em; font-size: 1.6em;
margin-top: 0.2em; margin-top: 0.2em;
padding-right: 0.4em; padding-right: 0.4em;
font-weight: 600; font-weight: 500;
overflow: hidden; overflow: hidden;
> * { > span {
background: white; background: white;
padding-right: 0.3em; padding-right: 0.3em;
display: inline; display: inline;
...@@ -46,7 +47,10 @@ ...@@ -46,7 +47,10 @@
float: left; float: left;
width: 0; width: 0;
font-weight: 400; font-weight: 400;
color: grey; color: lightgrey;
vertical-align: baseline;
font-size: 0.8em;
padding-top: 0.25em;
white-space: nowrap; white-space: nowrap;
content: ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "; content: ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . ";
} }
......
...@@ -12,7 +12,7 @@ export default ({version, className}) => { ...@@ -12,7 +12,7 @@ export default ({version, className}) => {
return ( return (
<div className={className}> <div className={className}>
{title} <span>{title}</span>
</div> </div>
) )
} }
\ No newline at end of file
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
line-height: 1.55; line-height: 1.55;
} }
p { .root p {
width: 55ch; width: 55ch;
font-size: 1em; font-size: 1em;
margin-bottom: 1.6em; margin-bottom: 1.6em;
......
...@@ -44,10 +44,6 @@ a { ...@@ -44,10 +44,6 @@ a {
right: 10px; right: 10px;
} }
.root p {
max-width: 45ch;
}
a:visited { a:visited {
color: var(--color-primary); color: var(--color-primary);
font-style: normal; font-style: normal;
......
...@@ -73,3 +73,8 @@ ...@@ -73,3 +73,8 @@
pointer-events: none; pointer-events: none;
height: 0; height: 0;
} }
.ProseMirror p {
margin-top: 0;
margin-bottom: 0;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment