StyleChanges
This commit is contained in:
parent
d5ff1595a8
commit
5fb13c0cfd
@ -1,35 +1,38 @@
|
|||||||
.App {
|
html {
|
||||||
text-align: center;
|
background-color: #383c4a;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
color: #ddd;
|
||||||
|
background-color: #2a2e3a;
|
||||||
.App-header {
|
vertical-align: middle;
|
||||||
background-color: #282c34;
|
|
||||||
min-height: 100vh;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-size: calc(10px + 2vmin);
|
|
||||||
color: white;
|
|
||||||
}
|
}
|
||||||
|
.header > button {
|
||||||
|
height: 100%;
|
||||||
|
display: block;
|
||||||
|
float: right;
|
||||||
|
margin-top: auto;
|
||||||
|
margin-bottom: auto;
|
||||||
|
width: 150px;
|
||||||
|
font-size: 16pt;
|
||||||
|
color: #ddd;
|
||||||
|
border-style: line;
|
||||||
|
|
||||||
.App-link {
|
background-color: #404552;
|
||||||
color: #61dafb;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes App-logo-spin {
|
/* For some reason, the CSS i need to use to get this to work isn't coming to me >:( */
|
||||||
from {
|
|
||||||
transform: rotate(0deg);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
transform: rotate(360deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.KBColumn {
|
.KBColumn {
|
||||||
|
text-align: center;
|
||||||
display: block;
|
display: block;
|
||||||
float: left;
|
float: left;
|
||||||
width: 200px;
|
width:initial;
|
||||||
|
flex-grow:inherit;
|
||||||
|
border-color: #ddd;
|
||||||
|
border-width: 2px;
|
||||||
|
border-style: solid;
|
||||||
|
color: "orange";
|
||||||
|
}
|
||||||
|
.panel{
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -56,7 +56,7 @@ class App extends React.Component<{}, State> {
|
|||||||
this.state.columns.push({
|
this.state.columns.push({
|
||||||
id: columnId,
|
id: columnId,
|
||||||
name: "tempName" + columnId,
|
name: "tempName" + columnId,
|
||||||
color: "red",
|
color: "#404552",
|
||||||
tasks: [],
|
tasks: [],
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -78,6 +78,7 @@ class App extends React.Component<{}, State> {
|
|||||||
return (
|
return (
|
||||||
<div className="App">
|
<div className="App">
|
||||||
<Header addColumn={this.addColumn} addTask={this.addTask} />
|
<Header addColumn={this.addColumn} addTask={this.addTask} />
|
||||||
|
<div className='panel'>
|
||||||
{this.state.columns.map((column, index) => (
|
{this.state.columns.map((column, index) => (
|
||||||
<KBColumn
|
<KBColumn
|
||||||
color={column.color}
|
color={column.color}
|
||||||
@ -88,6 +89,7 @@ class App extends React.Component<{}, State> {
|
|||||||
tasks={column.tasks}
|
tasks={column.tasks}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@ type HeaderProps = {
|
|||||||
};
|
};
|
||||||
const Header = (props: HeaderProps) => {
|
const Header = (props: HeaderProps) => {
|
||||||
return (
|
return (
|
||||||
<div className="header" style={{ backgroundColor: "grey", height: 60 }}>
|
<div className="header" style={{ height: 60 }}>
|
||||||
<h1
|
<h1
|
||||||
style={{
|
style={{
|
||||||
float: "left",
|
float: "left",
|
||||||
|
@ -8,7 +8,7 @@ type KBColumnProps = {
|
|||||||
onDelete?: (id: number) => void;
|
onDelete?: (id: number) => void;
|
||||||
};
|
};
|
||||||
const defaultProps: KBColumnProps = {
|
const defaultProps: KBColumnProps = {
|
||||||
color: "#00cc00",
|
color: "#404552",
|
||||||
title: "waah",
|
title: "waah",
|
||||||
tasks: [],
|
tasks: [],
|
||||||
id: -1,
|
id: -1,
|
||||||
|
Loading…
Reference in New Issue
Block a user