mirror of
https://github.com/FJurmanovic/wallet-web.git
synced 2026-02-06 06:08:10 +00:00
create transaction with type and wallet id when comming from wallet page
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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,
|
||||
),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user