mirror of
https://github.com/yldio/copilot.git
synced 2024-11-13 06:40:06 +02:00
fixing spacing around table and button in invite table
This commit is contained in:
parent
61db98e842
commit
cb410b58f7
@ -63,7 +63,9 @@ const Invite = React.createClass({
|
|||||||
|
|
||||||
const InputStyle = {
|
const InputStyle = {
|
||||||
float: 'left',
|
float: 'left',
|
||||||
width: '75%'
|
width: '75%',
|
||||||
|
minHeight: '50px',
|
||||||
|
marginBottom: '20px',
|
||||||
};
|
};
|
||||||
|
|
||||||
const AddButtonStyle = {
|
const AddButtonStyle = {
|
||||||
@ -93,6 +95,7 @@ const Invite = React.createClass({
|
|||||||
<Column xs={12}>
|
<Column xs={12}>
|
||||||
<form onSubmit={this.handleSubmit}>
|
<form onSubmit={this.handleSubmit}>
|
||||||
<Select.Creatable
|
<Select.Creatable
|
||||||
|
aria-label="member select"
|
||||||
onChange={handleSelectChange}
|
onChange={handleSelectChange}
|
||||||
onNewOptionClick={handleSelectChange}
|
onNewOptionClick={handleSelectChange}
|
||||||
options={selectData}
|
options={selectData}
|
||||||
|
@ -1,12 +1,23 @@
|
|||||||
const React = require('react');
|
const React = require('react');
|
||||||
|
const Styled = require('styled-components');
|
||||||
|
|
||||||
const Table = require('@ui/components/table-data-table');
|
const Table = require('@ui/components/table-data-table');
|
||||||
const Checkbox = require('@ui/components/checkbox');
|
const Checkbox = require('@ui/components/checkbox');
|
||||||
|
|
||||||
|
const fns = require('@ui/shared/functions');
|
||||||
|
|
||||||
const PersonStatus = require('./person-status');
|
const PersonStatus = require('./person-status');
|
||||||
const PersonRole = require('./person-role');
|
const PersonRole = require('./person-role');
|
||||||
const PersonDelete = require('./person-delete');
|
const PersonDelete = require('./person-delete');
|
||||||
|
|
||||||
|
const {
|
||||||
|
default: styled
|
||||||
|
} = Styled;
|
||||||
|
|
||||||
|
const {
|
||||||
|
remcalc
|
||||||
|
} = fns;
|
||||||
|
|
||||||
const PeopleTable = (props) => {
|
const PeopleTable = (props) => {
|
||||||
|
|
||||||
const {
|
const {
|
||||||
@ -78,11 +89,17 @@ const PeopleTable = (props) => {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const StyledWrapper = styled.div`
|
||||||
|
margin-top: ${remcalc(40)};
|
||||||
|
`;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Table
|
<StyledWrapper>
|
||||||
columns={columns}
|
<Table
|
||||||
data={data}
|
columns={columns}
|
||||||
/>
|
data={data}
|
||||||
|
/>
|
||||||
|
</StyledWrapper>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -479,7 +479,7 @@
|
|||||||
},
|
},
|
||||||
"orgs": {
|
"orgs": {
|
||||||
"ui": {
|
"ui": {
|
||||||
"invite_toggled": true,
|
"invite_toggled": false,
|
||||||
"member_status_tooltip": false,
|
"member_status_tooltip": false,
|
||||||
"member_role_tooltip": false,
|
"member_role_tooltip": false,
|
||||||
"sections": [
|
"sections": [
|
||||||
@ -535,7 +535,7 @@
|
|||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"ui": {
|
"ui": {
|
||||||
"invite_toggled": true,
|
"invite_toggled": false,
|
||||||
"member_status_tooltip": false,
|
"member_status_tooltip": false,
|
||||||
"member_role_tooltip": false,
|
"member_role_tooltip": false,
|
||||||
"sections": [
|
"sections": [
|
||||||
|
@ -124,6 +124,12 @@ const style = css`
|
|||||||
const StyledButton = styled.button`
|
const StyledButton = styled.button`
|
||||||
min-width: ${remcalc(120)};
|
min-width: ${remcalc(120)};
|
||||||
${style}
|
${style}
|
||||||
|
|
||||||
|
// Need to use HTML element selector, as adjecent buttons may have
|
||||||
|
// different class names if they are primary/secondary/disabled
|
||||||
|
& + button {
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const StyledAnchor = styled.a`
|
const StyledAnchor = styled.a`
|
||||||
|
Loading…
Reference in New Issue
Block a user