mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
fix: learnhouse logo editor sizing
This commit is contained in:
parent
918fa001e1
commit
d3846469b2
1 changed files with 3 additions and 3 deletions
|
|
@ -7,7 +7,7 @@ import { AuthContext } from "../Security/AuthProvider";
|
||||||
import learnhouseIcon from "public/learnhouse_icon.png";
|
import learnhouseIcon from "public/learnhouse_icon.png";
|
||||||
import { ToolbarButtons } from "./Toolbar/ToolbarButtons";
|
import { ToolbarButtons } from "./Toolbar/ToolbarButtons";
|
||||||
import { motion, AnimatePresence } from "framer-motion";
|
import { motion, AnimatePresence } from "framer-motion";
|
||||||
import Image from "next/legacy/image";
|
import Image from "next/image";
|
||||||
import styled from "styled-components";
|
import styled from "styled-components";
|
||||||
import { getBackendUrl } from "@services/config/config";
|
import { getBackendUrl } from "@services/config/config";
|
||||||
import { SlashIcon } from "@radix-ui/react-icons";
|
import { SlashIcon } from "@radix-ui/react-icons";
|
||||||
|
|
@ -115,7 +115,7 @@ function Editor(props: Editor) {
|
||||||
<b>{props.course.course.name}</b> <SlashIcon /> {props.activity.name}{" "}
|
<b>{props.course.course.name}</b> <SlashIcon /> {props.activity.name}{" "}
|
||||||
</EditorInfoDocName>
|
</EditorInfoDocName>
|
||||||
<EditorSaveButton onClick={() => props.setContent(editor.getJSON())}>
|
<EditorSaveButton onClick={() => props.setContent(editor.getJSON())}>
|
||||||
Save <Save size={12} />
|
Save <Save size={11} />
|
||||||
</EditorSaveButton>
|
</EditorSaveButton>
|
||||||
</EditorInfoWrapper>
|
</EditorInfoWrapper>
|
||||||
<EditorButtonsWrapper>
|
<EditorButtonsWrapper>
|
||||||
|
|
@ -212,7 +212,7 @@ const EditorUserProfileWrapper = styled.div`
|
||||||
//..todo
|
//..todo
|
||||||
const EditorInfoLearnHouseLogo = styled(Image)`
|
const EditorInfoLearnHouseLogo = styled(Image)`
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
margin-right: 15px;
|
margin-right: 0px;
|
||||||
`;
|
`;
|
||||||
const EditorInfoDocName = styled.div`
|
const EditorInfoDocName = styled.div`
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue