Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
frontend
Commits
41ac4f01
Commit
41ac4f01
authored
Nov 24, 2022
by
isstuev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chenge margins
parent
26471213
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
9 deletions
+9
-9
Block.tsx
ui/pages/Block.tsx
+1
-1
MyProfile.tsx
ui/pages/MyProfile.tsx
+1
-1
Transaction.tsx
ui/pages/Transaction.tsx
+1
-1
DeletePublicTagModal.tsx
ui/publicTags/DeletePublicTagModal.tsx
+1
-1
AccountPageDescription.tsx
ui/shared/AccountPageDescription.tsx
+1
-1
FormModal.tsx
ui/shared/FormModal.tsx
+1
-1
PageTitle.tsx
ui/shared/Page/PageTitle.tsx
+1
-1
Header.tsx
ui/snippets/header/Header.tsx
+1
-1
NavigationDesktop.tsx
ui/snippets/navigation/NavigationDesktop.tsx
+1
-1
No files found.
ui/pages/Block.tsx
View file @
41ac4f01
...
@@ -24,7 +24,7 @@ const BlockPageContent = () => {
...
@@ -24,7 +24,7 @@ const BlockPageContent = () => {
return
(
return
(
<
Page
>
<
Page
>
<
PageTitle
text=
{
`Block #${ router.query.id }`
}
/>
<
PageTitle
text=
{
`Block #${ router.query.id }`
}
/>
<
RoutedTabs
tabs=
{
TABS
}
tabListMarginBottom=
{
{
base
:
6
,
lg
:
12
}
}
/>
<
RoutedTabs
tabs=
{
TABS
}
tabListMarginBottom=
{
{
base
:
6
,
lg
:
8
}
}
/>
</
Page
>
</
Page
>
);
);
};
};
...
...
ui/pages/MyProfile.tsx
View file @
41ac4f01
...
@@ -23,7 +23,7 @@ const MyProfile = () => {
...
@@ -23,7 +23,7 @@ const MyProfile = () => {
}
}
return
(
return
(
<
VStack
maxW=
"412px"
mt=
{
12
}
gap=
{
5
}
alignItems=
"stretch"
>
<
VStack
maxW=
"412px"
mt=
{
8
}
gap=
{
5
}
alignItems=
"stretch"
>
<
UserAvatar
size=
{
64
}
data=
{
data
}
isFetched=
{
isFetched
}
/>
<
UserAvatar
size=
{
64
}
data=
{
data
}
isFetched=
{
isFetched
}
/>
<
FormControl
variant=
"floating"
id=
"name"
isRequired
size=
"lg"
>
<
FormControl
variant=
"floating"
id=
"name"
isRequired
size=
"lg"
>
<
Input
<
Input
...
...
ui/pages/Transaction.tsx
View file @
41ac4f01
...
@@ -82,7 +82,7 @@ const TransactionPageContent = () => {
...
@@ -82,7 +82,7 @@ const TransactionPageContent = () => {
</
Flex
>
</
Flex
>
)
}
)
}
</
Flex
>
</
Flex
>
<
RoutedTabs
tabs=
{
TABS
}
tabListMarginBottom=
{
{
base
:
6
,
lg
:
12
}
}
/>
<
RoutedTabs
tabs=
{
TABS
}
tabListMarginBottom=
{
{
base
:
6
,
lg
:
8
}
}
/>
</
Page
>
</
Page
>
);
);
};
};
...
...
ui/publicTags/DeletePublicTagModal.tsx
View file @
41ac4f01
...
@@ -76,7 +76,7 @@ const DeletePublicTagModal: React.FC<Props> = ({ isOpen, onClose, data, onDelete
...
@@ -76,7 +76,7 @@ const DeletePublicTagModal: React.FC<Props> = ({ isOpen, onClose, data, onDelete
}
}
return
(
return
(
<>
<>
<
Box
marginBottom=
{
12
}
>
<
Box
marginBottom=
{
8
}
>
{
text
}
{
text
}
</
Box
>
</
Box
>
<
FormControl
variant=
"floating"
id=
"tag-delete"
backgroundColor=
{
formBackgroundColor
}
>
<
FormControl
variant=
"floating"
id=
"tag-delete"
backgroundColor=
{
formBackgroundColor
}
>
...
...
ui/shared/AccountPageDescription.tsx
View file @
41ac4f01
...
@@ -39,7 +39,7 @@ const AccountPageDescription = ({ children }: {children: React.ReactNode}) => {
...
@@ -39,7 +39,7 @@ const AccountPageDescription = ({ children }: {children: React.ReactNode}) => {
);
);
return
(
return
(
<
Box
position=
"relative"
marginBottom=
{
{
base
:
6
,
lg
:
12
}
}
>
<
Box
position=
"relative"
marginBottom=
{
{
base
:
6
,
lg
:
8
}
}
>
<
Text
<
Text
ref=
{
ref
}
ref=
{
ref
}
maxHeight=
{
needCut
&&
!
expanded
?
`${ CUT_HEIGHT }px`
:
'
auto
'
}
maxHeight=
{
needCut
&&
!
expanded
?
`${ CUT_HEIGHT }px`
:
'
auto
'
}
...
...
ui/shared/FormModal.tsx
View file @
41ac4f01
...
@@ -49,7 +49,7 @@ export default function FormModal<TData>({
...
@@ -49,7 +49,7 @@ export default function FormModal<TData>({
<
ModalCloseButton
/>
<
ModalCloseButton
/>
<
ModalBody
mb=
{
0
}
>
<
ModalBody
mb=
{
0
}
>
{
(
isAlertVisible
||
text
)
&&
(
{
(
isAlertVisible
||
text
)
&&
(
<
Box
marginBottom=
{
{
base
:
6
,
lg
:
12
}
}
>
<
Box
marginBottom=
{
{
base
:
6
,
lg
:
8
}
}
>
{
text
&&
(
{
text
&&
(
<
Text
lineHeight=
"30px"
mb=
{
3
}
>
<
Text
lineHeight=
"30px"
mb=
{
3
}
>
{
text
}
{
text
}
...
...
ui/shared/Page/PageTitle.tsx
View file @
41ac4f01
...
@@ -3,7 +3,7 @@ import React from 'react';
...
@@ -3,7 +3,7 @@ import React from 'react';
const
PageTitle
=
({
text
}:
{
text
:
string
})
=>
{
const
PageTitle
=
({
text
}:
{
text
:
string
})
=>
{
return
(
return
(
<
Heading
as=
"h1"
size=
"lg"
marginBottom=
{
{
base
:
6
,
lg
:
8
}
}
>
{
text
}
</
Heading
>
<
Heading
as=
"h1"
size=
"lg"
marginBottom=
{
6
}
>
{
text
}
</
Heading
>
);
);
};
};
...
...
ui/snippets/header/Header.tsx
View file @
41ac4f01
...
@@ -53,7 +53,7 @@ const Header = ({ hideOnScrollDown, hasSearch }: Props) => {
...
@@ -53,7 +53,7 @@ const Header = ({ hideOnScrollDown, hasSearch }: Props) => {
display=
{
{
base
:
'
none
'
,
lg
:
'
flex
'
}
}
display=
{
{
base
:
'
none
'
,
lg
:
'
flex
'
}
}
paddingX=
{
12
}
paddingX=
{
12
}
paddingTop=
{
9
}
paddingTop=
{
9
}
paddingBottom=
"52px"
paddingBottom=
{
8
}
>
>
<
Box
width=
"100%"
>
{
hasSearch
&&
<
SearchBar
/>
}
</
Box
>
<
Box
width=
"100%"
>
{
hasSearch
&&
<
SearchBar
/>
}
</
Box
>
<
ColorModeToggler
/>
<
ColorModeToggler
/>
...
...
ui/snippets/navigation/NavigationDesktop.tsx
View file @
41ac4f01
...
@@ -73,7 +73,7 @@ const NavigationDesktop = () => {
...
@@ -73,7 +73,7 @@ const NavigationDesktop = () => {
<
NetworkLogo
isCollapsed=
{
isCollapsed
}
/>
<
NetworkLogo
isCollapsed=
{
isCollapsed
}
/>
<
NetworkMenu
isCollapsed=
{
isCollapsed
}
/>
<
NetworkMenu
isCollapsed=
{
isCollapsed
}
/>
</
Box
>
</
Box
>
<
Box
as=
"nav"
mt=
{
14
}
>
<
Box
as=
"nav"
mt=
{
8
}
>
<
VStack
as=
"ul"
spacing=
"2"
alignItems=
"flex-start"
overflow=
"hidden"
>
<
VStack
as=
"ul"
spacing=
"2"
alignItems=
"flex-start"
overflow=
"hidden"
>
{
mainNavItems
.
map
((
item
)
=>
<
NavLink
key=
{
item
.
text
}
{
...
item
}
isCollapsed=
{
isCollapsed
}
/>)
}
{
mainNavItems
.
map
((
item
)
=>
<
NavLink
key=
{
item
.
text
}
{
...
item
}
isCollapsed=
{
isCollapsed
}
/>)
}
</
VStack
>
</
VStack
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment