fix: fix font and ui isssue

This commit is contained in:
rutik wankhade 2022-04-21 20:51:46 +05:30
parent 458ce3c7c5
commit d3f74251e7
3 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ class Editor extends React.Component {
type="text"
value={this.state.title}
placeholder="Enter title here"
className="border text-gray-700 text-xl rounded p-2 h-20"
className="border text-gray-700 text-xl rounded p-2 h-24"
onChange={(e) => this.setState({ title: e.target.value })}
/>
</div>

View File

@ -21,7 +21,7 @@ const OutlineTheme = ({ config }) => {
</div>
<div className="w-full border-gray-800 border-t-4 flex mt-10 p-2 px-6 items-center bg-white">
<div className={`${font} w-full border-gray-800 border-t-4 flex mt-10 p-2 px-6 items-center bg-white`}>
<i className={`devicon-${icon.value}-plain dev-icon text-4xl`}></i>
<h2 className="text-xl ml-auto mr-2 font-semibold"> - {author}</h2>

View File