create transaction with type and wallet id when comming from wallet page

This commit is contained in:
Fran Jurmanović
2021-06-13 14:29:53 +02:00
parent 94e45bf33b
commit 7596c832d7
13 changed files with 246 additions and 79 deletions

View File

@@ -63,6 +63,7 @@
border-bottom-right-radius: 0.2em;
border-bottom-left-radius: 0.2em;
font-size: 16px;
z-index: 1500;
input.dropdown-custom-search {
position: relative;
box-sizing: border-box;

View File

@@ -13,8 +13,28 @@ app-pagination {
padding: 4px 12px;
border-radius: 4px;
display: grid;
grid-template-columns: auto 1fr auto;
margin: 6px 8px;
&.col-3 {
grid-template-columns: repeat(3, 1fr);
}
&.col-2 {
grid-template-columns: repeat(2, 1fr);
}
&.col-1 {
grid-template-columns: 1fr;
}
&.col-4 {
grid-template-columns: repeat(4, 1fr);
}
&.col-5 {
grid-template-columns: repeat(5, 1fr);
}
&.col-6 {
grid-template-columns: repeat(6, 1fr);
}
&.col-transactions {
grid-template-columns: auto 1fr auto;
}
td,
th {
margin: 0 12px;

View File

@@ -5,32 +5,40 @@ $font-weight-semibold: 400;
$font-weight-bold: 600;
$button-map: (
"primary": (
$blue-08,
$white,
),
"disabled": (
$gray-08,
$white,
),
"secondary": (
$orange-08,
$white,
),
"alert": (
$red-08,
$white,
),
"black": (
$black,
$white,
),
"white": (
$white,
$black,
),
"yellow": (
$yellow-06,
$white,
),
'primary': (
$blue-08,
$white,
),
'disabled': (
$gray-08,
$white,
),
'secondary': (
$orange-08,
$white,
),
'alert': (
$red-08,
$white,
),
'black': (
$black,
$white,
),
'white': (
$white,
$black,
),
'yellow': (
$yellow-06,
$white,
),
'red': (
$red-08,
$white,
),
'green': (
$green-08,
$white,
),
);