summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/components/styled
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2022-01-24 14:12:12 -0300
committerSebastian <sebasjm@gmail.com>2022-01-24 14:12:12 -0300
commit882d6b3710f82d85b2129f09c63f9db45985ef64 (patch)
treef6304b6bb539e78d3ca4711fa5483dc6657f2163 /packages/taler-wallet-webextension/src/components/styled
parentec059d42d77a5f092135635f478790e77a2685df (diff)
downloadwallet-core-882d6b3710f82d85b2129f09c63f9db45985ef64.tar.gz
wallet-core-882d6b3710f82d85b2129f09c63f9db45985ef64.tar.bz2
wallet-core-882d6b3710f82d85b2129f09c63f9db45985ef64.zip
last activity -> pending; fix downloadTos
Diffstat (limited to 'packages/taler-wallet-webextension/src/components/styled')
-rw-r--r--packages/taler-wallet-webextension/src/components/styled/index.tsx13
1 files changed, 7 insertions, 6 deletions
diff --git a/packages/taler-wallet-webextension/src/components/styled/index.tsx b/packages/taler-wallet-webextension/src/components/styled/index.tsx
index 2d16b496c..5dd7318b7 100644
--- a/packages/taler-wallet-webextension/src/components/styled/index.tsx
+++ b/packages/taler-wallet-webextension/src/components/styled/index.tsx
@@ -77,7 +77,7 @@ export const WalletBox = styled.div<{ noPadding?: boolean }>`
justify-content: space-between;
align-items: center;
& > * {
- width: 400px;
+ width: 500px;
}
& > section {
padding: ${({ noPadding }) => (noPadding ? "0px" : "8px")};
@@ -142,7 +142,7 @@ export const Middle = styled.div`
export const PopupBox = styled.div<{ noPadding?: boolean; devMode: boolean }>`
height: 290px;
- width: ${({ devMode }) => (!devMode ? "400px" : "500px")};
+ width: 500px;
display: flex;
flex-direction: column;
justify-content: space-between;
@@ -783,7 +783,7 @@ export const PopupNavigation = styled.div<{ devMode?: boolean }>`
display: flex;
& > div {
- width: ${({ devMode }) => (!devMode ? "400px" : "500px")};
+ width: 500px;
}
& > div > a {
@@ -815,15 +815,16 @@ export const NiceSelect = styled.div`
box-shadow: none;
background-image: ${image};
- background-position: right 8px center;
+ background-position: right 4px center;
background-repeat: no-repeat;
- background-size: 1.5em 1.5em;
+ background-size: 32px 32px;
background-color: white;
border-radius: 0.25rem;
font-size: 1em;
- padding: 0.5em 3em 0.5em 1em;
+ padding: 8px 32px 8px 8px;
+ /* 0.5em 3em 0.5em 1em; */
cursor: pointer;
}