wip
This commit is contained in:
@@ -1,12 +1,14 @@
|
||||
import { DataBuddy } from '@dank-inc/data-buddy'
|
||||
import { User } from '../../types'
|
||||
import { Account, Stack, Transaction, User } from '../../types'
|
||||
|
||||
const userRecords: User[] = [
|
||||
export const users = new DataBuddy<User>([
|
||||
{
|
||||
id: '42',
|
||||
name: 'TestUser42',
|
||||
email: 'testuser@email.com',
|
||||
},
|
||||
]
|
||||
])
|
||||
|
||||
export const users = new DataBuddy(userRecords)
|
||||
export const accounts = new DataBuddy<Account>([])
|
||||
export const stacks = new DataBuddy<Stack>([])
|
||||
export const transactions = new DataBuddy<Transaction>([])
|
||||
|
@@ -1,50 +0,0 @@
|
||||
.ant-layout-header.app-header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
vertical-align: middle;
|
||||
padding: 0 1rem;
|
||||
|
||||
a {
|
||||
font-size: 1.2rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div {
|
||||
display: flex;
|
||||
vertical-align: middle;
|
||||
height: 100%;
|
||||
|
||||
* {
|
||||
margin: auto 0.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
h3.ant-typography {
|
||||
margin: auto 0 !important;
|
||||
}
|
||||
|
||||
div.ant-typography {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
}
|
||||
|
||||
.ant-layout.layout {
|
||||
min-height: 100vh;
|
||||
// background-color: #444;
|
||||
// color: white;
|
||||
}
|
||||
|
||||
.ant-avatar {
|
||||
display: flex;
|
||||
|
||||
* {
|
||||
margin: auto;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.ant-layout-content {
|
||||
max-width: 900px;
|
||||
margin: auto;
|
||||
}
|
Reference in New Issue
Block a user