mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 07:10:33 +00:00
fix: setup page rtl.
This commit is contained in:
@@ -8,7 +8,9 @@ import { useAuthActions, useAuthOrganizationId } from 'hooks/state';
|
|||||||
function FooterLinkItem({ title, link }) {
|
function FooterLinkItem({ title, link }) {
|
||||||
return (
|
return (
|
||||||
<div class="">
|
<div class="">
|
||||||
<a href={link} target="_blank">{ title }</a>
|
<a href={link} target="_blank">
|
||||||
|
{title}
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -28,7 +30,12 @@ export default function SetupLeftSection() {
|
|||||||
<section className={'setup-page__left-section'}>
|
<section className={'setup-page__left-section'}>
|
||||||
<div className={'content'}>
|
<div className={'content'}>
|
||||||
<div className={'content__logo'}>
|
<div className={'content__logo'}>
|
||||||
<Icon icon="bigcapital" className={'bigcapital--alt'} height={37} width={190} />
|
<Icon
|
||||||
|
icon="bigcapital"
|
||||||
|
className={'bigcapital--alt'}
|
||||||
|
height={37}
|
||||||
|
width={190}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h1 className={'content__title'}>
|
<h1 className={'content__title'}>
|
||||||
@@ -42,17 +49,22 @@ export default function SetupLeftSection() {
|
|||||||
|
|
||||||
<div className={'content__organization'}>
|
<div className={'content__organization'}>
|
||||||
<span class="organization-id">
|
<span class="organization-id">
|
||||||
<T id={'organization_id'} />: <span class="id">{ organizationId }</span>,
|
<T id={'organization_id'} />:{' '}
|
||||||
|
<span class="id">{organizationId}</span>,
|
||||||
</span>
|
</span>
|
||||||
<br />
|
<br />
|
||||||
<span class="signout">
|
<span class="signout">
|
||||||
<a onClick={onClickLogout} href="#"><T id={'sign_out'} /></a>
|
<a onClick={onClickLogout} href="#">
|
||||||
|
<T id={'sign_out'} />
|
||||||
|
</a>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className={'content__footer'}>
|
<div className={'content__footer'}>
|
||||||
<div className={'content__contact-info'}>
|
<div className={'content__contact-info'}>
|
||||||
<p><T id={'we_re_here_to_help'} /> {'+21892-791-8381'}</p>
|
<p>
|
||||||
|
<T id={'we_re_here_to_help'} /> <span>{'+21892-738-1987'}</span>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className={'content__links'}>
|
<div className={'content__links'}>
|
||||||
@@ -61,5 +73,5 @@ export default function SetupLeftSection() {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
@@ -57,11 +57,11 @@ const initialState = {
|
|||||||
periods: [
|
periods: [
|
||||||
{
|
{
|
||||||
slug: 'month',
|
slug: 'month',
|
||||||
label: 'Monthly',
|
label: <T id={'monthly'}/>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
slug: 'year',
|
slug: 'year',
|
||||||
label: 'Yearly',
|
label: <T id={'yearly'}/>
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -101,6 +101,9 @@
|
|||||||
opacity: 0.75;
|
opacity: 0.75;
|
||||||
padding-bottom: 5px;
|
padding-bottom: 5px;
|
||||||
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
|
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
|
||||||
|
p > span {
|
||||||
|
unicode-bidi: plaintext;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__links {
|
&__links {
|
||||||
|
|||||||
Reference in New Issue
Block a user