Skip to content
Snippets Groups Projects
Commit 6096f84c authored by chris's avatar chris
Browse files

style-fix

parent 7218fccb
No related branches found
No related tags found
1 merge request!215set id
......@@ -163,12 +163,12 @@ const NotesContainer = styled.div`
const WaxBottomRightInfo = styled.div``;
const InfoContainer = styled.div`
display: flex;
position: fixed !important;
position: fixed;
bottom: 1px;
right: 21px;
z-index: 1;
z-index: 999;
`;
const InfoArea = styled.div``;
let surfaceHeight = 600;
let notesHeight = 200;
......@@ -193,6 +193,7 @@ const RightArea = ComponentPlugin('rightArea');
const CommentTrackToolBar = ComponentPlugin('commentTrackToolBar');
const WaxOverlays = ComponentPlugin('waxOverlays');
const BottomRightInfo = ComponentPlugin('BottomRightInfo');
const EditoriaLayout = ({ editor }) => {
const {
view: { main },
......
......@@ -147,19 +147,15 @@ const NotesContainer = styled.div`
padding-right: ${grid(1)};
}
`;
const WaxBottomRightInfo= styled.div`
`;
const InfoContainer= styled.div`
display:flex;
position:fixed !important;
bottom:1px;
right:21px;
z-index:1;
`;
const InfoArea=styled.div`
const WaxBottomRightInfo = styled.div``;
const InfoContainer = styled.div`
display: flex;
position: fixed !important;
bottom: 1px;
right: 21px;
z-index: 1;
`;
const InfoArea = styled.div``;
let surfaceHeight = 500;
let notesHeight = 150;
......@@ -181,6 +177,7 @@ const TopBar = ComponentPlugin('topBar');
const NotesArea = ComponentPlugin('notesArea');
const RightArea = ComponentPlugin('rightArea');
const WaxOverlays = ComponentPlugin('waxOverlays');
const BottomRightInfo = ComponentPlugin('BottomRightInfo');
const EditoriaLayout = ({ editor }) => {
const {
......@@ -206,13 +203,6 @@ const EditoriaLayout = ({ editor }) => {
return (
<ThemeProvider theme={cokoTheme}>
<Wrapper>
<WaxBottomRightInfo>
<InfoContainer id="info-container">
<BottomRightInfo/>
</InfoContainer>
</WaxBottomRightInfo>
<TopMenu>
<TopBar />
</TopMenu>
......@@ -249,6 +239,11 @@ const EditoriaLayout = ({ editor }) => {
</Main>
<WaxOverlays />
<WaxBottomRightInfo>
<InfoContainer id="info-container">
<BottomRightInfo />
</InfoContainer>
</WaxBottomRightInfo>
</Wrapper>
</ThemeProvider>
);
......
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