Commit 330282d8 authored by Steven's avatar Steven

chore: tweak styles

parent f467264e
...@@ -115,9 +115,9 @@ const LocationSelector = (props: Props) => { ...@@ -115,9 +115,9 @@ const LocationSelector = (props: Props) => {
size="sm" size="sm"
startDecorator={ startDecorator={
state.position && ( state.position && (
<span className="text-xs opacity-60"> <div className="text-xs leading-6 opacity-60">
[{state.position.lat.toFixed(2)}, {state.position.lng.toFixed(2)}] [{state.position.lat.toFixed(2)}, {state.position.lng.toFixed(2)}]
</span> </div>
) )
} }
disabled={!state.position} disabled={!state.position}
......
...@@ -217,7 +217,7 @@ const Editor = forwardRef(function Editor(props: Props, ref: React.ForwardedRef< ...@@ -217,7 +217,7 @@ const Editor = forwardRef(function Editor(props: Props, ref: React.ForwardedRef<
className={cn("flex flex-col justify-start items-start relative w-full h-auto max-h-[50vh] bg-inherit dark:text-gray-300", className)} className={cn("flex flex-col justify-start items-start relative w-full h-auto max-h-[50vh] bg-inherit dark:text-gray-300", className)}
> >
<textarea <textarea
className="w-full h-full my-1 text-base resize-none overflow-x-hidden overflow-y-auto bg-transparent outline-none whitespace-pre-wrap break-words" className="w-full h-full my-1 text-base resize-none overflow-x-hidden overflow-y-auto bg-transparent outline-none placeholder:opacity-70 whitespace-pre-wrap break-words"
rows={2} rows={2}
placeholder={placeholder} placeholder={placeholder}
ref={editorRef} ref={editorRef}
......
...@@ -528,6 +528,7 @@ const MemoEditor = observer((props: Props) => { ...@@ -528,6 +528,7 @@ const MemoEditor = observer((props: Props) => {
<div <div
className={cn( className={cn(
"absolute right-1 top-1 opacity-60", "absolute right-1 top-1 opacity-60",
"flex flex-row justify-end items-center gap-1",
"invisible group-focus-within:visible group-hover:visible hover:visible focus-within:visible", "invisible group-focus-within:visible group-hover:visible hover:visible focus-within:visible",
(isVisibilitySelectorOpen || memoName) && "visible", (isVisibilitySelectorOpen || memoName) && "visible",
)} )}
......
...@@ -36,7 +36,7 @@ const SearchBar = observer(() => { ...@@ -36,7 +36,7 @@ const SearchBar = observer(() => {
<SearchIcon className="absolute left-2 w-4 h-auto opacity-40 dark:text-zinc-300" /> <SearchIcon className="absolute left-2 w-4 h-auto opacity-40 dark:text-zinc-300" />
<input <input
className={cn( className={cn(
"w-full text-gray-500 leading-6 dark:text-zinc-300 placeholder:opacity-80 bg-zinc-50 dark:bg-zinc-900 border border-zinc-200 dark:border-zinc-800 text-sm rounded-xl p-1 pl-8 outline-0", "w-full text-gray-500 leading-6 dark:text-zinc-300 bg-zinc-50 dark:bg-zinc-900 border border-zinc-200 dark:border-zinc-800 text-sm rounded-xl p-1 pl-8 outline-0",
)} )}
placeholder={t("memo.search-placeholder")} placeholder={t("memo.search-placeholder")}
value={queryText} value={queryText}
......
...@@ -16,7 +16,7 @@ export const MonthNavigator = ({ visibleMonth, onMonthChange }: MonthNavigatorPr ...@@ -16,7 +16,7 @@ export const MonthNavigator = ({ visibleMonth, onMonthChange }: MonthNavigatorPr
return ( return (
<div className="w-full mb-1 flex flex-row justify-between items-center gap-1"> <div className="w-full mb-1 flex flex-row justify-between items-center gap-1">
<span className="relative text-sm dark:text-gray-400"> <span className="relative text-sm text-gray-500 dark:text-gray-400">
{currentMonth.toLocaleString(i18n.language, { year: "numeric", month: "long" })} {currentMonth.toLocaleString(i18n.language, { year: "numeric", month: "long" })}
</span> </span>
<div className="flex justify-end items-center shrink-0 gap-1"> <div className="flex justify-end items-center shrink-0 gap-1">
......
Markdown is supported
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