minor fixes

This commit is contained in:
Untone 2024-09-06 07:55:57 +03:00
parent e03971193e
commit 1ec368eae7
3 changed files with 4 additions and 16 deletions

View File

@ -1,11 +0,0 @@
<svg
width="13" height="16"
viewBox="0 0 13 16"
fill="none"
version="1.1"
xmlns="http://www.w3.org/2000/svg">
<path
d="M 10.1573,7.43667 C 11.2197,6.70286 11.9645,5.49809 11.9645,4.38095 11.9645,1.90571 10.0478,0 7.58352,0 H 0.738281 V 15.3333 H 8.44876 c 2.28904,0 4.06334,-1.8619 4.06334,-4.1509 0,-1.66478 -0.9419,-3.08859 -2.3548,-3.74573 z M 4.02344,2.73828 h 3.28571 c 0.90905,0 1.64286,0.73381 1.64286,1.64286 0,0.90905 -0.73381,1.64286 -1.64286,1.64286 H 4.02344 Z M 4.01629,9.3405869 h 3.87946 c 0.9090501,0 1.6428601,0.7338101 1.6428601,1.6428601 0,0.90905 -0.73381,1.64286 -1.6428601,1.64286 H 4.01629 Z"
fill="currentColor"
/>
</svg>

Before

Width:  |  Height:  |  Size: 677 B

View File

@ -1,5 +1,4 @@
import { createSignal } from 'solid-js'
import { Show } from 'solid-js/web'
import { Show, createSignal } from 'solid-js'
import { useLocalize } from '~/context/localize'
export const ConnectView = () => {

View File

@ -339,15 +339,15 @@ export const ProfileSettings = () => {
maxLength={120}
/>
<h4>{t('About the author')}</h4>
<h4>{t('About')}</h4>
<SimplifiedEditor
resetToInitial={clearAbout()}
noLimits={true}
variant="bordered"
onlyBubbleControls={true}
smallHeight={true}
placeholder={t('About the author')}
label={t('About the author')}
placeholder={t('About')}
label={t('About')}
initialContent={form.about || ''}
autoFocus={false}
onChange={(value) => updateFormField('about', value)}