Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
00511e5
Add a custom network and switch to it
piyalbasu Aug 21, 2022
d5da21a
add a custom network and switch to it
piyalbasu Aug 21, 2022
b9bb994
add ability to edit network
piyalbasu Aug 22, 2022
62a3cd4
fix PR comments and fix failing build
piyalbasu Aug 22, 2022
cb6e396
Merge branch 'feature/WAL-434-Add-Custom-Network' into feature/WAL-43…
piyalbasu Aug 22, 2022
ba4bf58
add removal flow
piyalbasu Aug 23, 2022
0c051ec
finish edit/remove custom network UI
piyalbasu Aug 24, 2022
c8b8537
Merge branch 'release/2.5.0' into feature/WAL-434-Edit-Custom-Network
piyalbasu Aug 24, 2022
bb94e08
fix import
piyalbasu Aug 24, 2022
49591dc
remove unused error const
piyalbasu Aug 24, 2022
40b816a
Merge 49591dc0f9ed23d3404097b7cd535e784f2b11c1 into 28bd348cc971d055b…
piyalbasu Aug 24, 2022
0401395
Add translations
actions-user Aug 24, 2022
a9647c0
add comments
piyalbasu Aug 24, 2022
2098094
Merge branch 'feature/WAL-434-Edit-Custom-Network' of github.com:stel…
piyalbasu Aug 24, 2022
ee7ac3c
Merge 2098094c76f3fb99a21ada72f2f46c55cc8af338 into 28bd348cc971d055b…
piyalbasu Aug 24, 2022
7a3b552
fix isMainnet and isTestnet check for NetworkForm
piyalbasu Aug 24, 2022
4c63c53
Merge branch 'feature/WAL-434-Edit-Custom-Network' of github.com:stel…
piyalbasu Aug 24, 2022
7ac58b0
Merge 4c63c53969cb9becc7b58f50717c8fd9f4db593a into 28bd348cc971d055b…
piyalbasu Aug 24, 2022
f844898
add Network Settings link to Settings view
piyalbasu Aug 24, 2022
ff42cd1
rename var and make sure it only triggers in Edit mode
piyalbasu Aug 24, 2022
8b8a692
Merge ff42cd1b4f40ff47fcaa2194e8a9c7f980dacc3a into 28bd348cc971d055b…
piyalbasu Aug 24, 2022
6896487
Merge commit '8b8a6926f0a81d93dbf2f104bd84912d8fe42b98' into feature/…
piyalbasu Aug 24, 2022
f49156d
Merge 68964875b1f1e3627f2d0ee0bf58f83504577cee into 8b8a6926f0a81d93d…
piyalbasu Aug 24, 2022
a240f7a
fix some incosistencies in styling
piyalbasu Aug 24, 2022
c1351eb
Merge a240f7a520fc53e0645caa7d36a80060bc0d0431 into f49156d3992e8c428…
piyalbasu Aug 24, 2022
95f07ac
Merge commit '0e56f37461cad2abd5b66a2f7bc7bb2f1efc73ec' into feature/…
piyalbasu Aug 24, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

&__remove-wrapper {
display: flex;
height: 2.2rem;
justify-content: center;
margin-top: 0.75rem;
}
Expand All @@ -44,10 +45,11 @@
width: 100%;
.BasicButton {
background: rgba(229, 72, 77, 1);
border-color: rgba(229, 72, 77, 1);
}
}

&__add-button {
margin-top: 3.625rem;
margin-top: 5.625rem;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import React from "react";
import { useSelector } from "react-redux";
import { useTranslation } from "react-i18next";
import SimpleBar from "simplebar-react";
import { Button } from "@stellar/design-system";

import { ROUTES } from "popup/constants/routes";
import { ListNavLink, ListNavLinkWrapper } from "popup/basics/ListNavLink";
import { Button } from "popup/basics/buttons/Button";

import { navigateTo } from "popup/helpers/navigate";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}

&__scrollbar {
height: 24.5rem;
height: 23.85rem;
}

&__name {
Expand All @@ -27,6 +27,7 @@
&__url {
color: rgba(255, 255, 255, 0.4);
font-size: 0.875rem;
margin-left: 1rem;
}

&__bottom {
Expand Down