Skip to content

Commit 56bc3b1

Browse files
committedFeb 15, 2016
Merge pull request #35 from pertrai1/base-app-fix
quick full height app fix
2 parents 1bb0e66 + 2024b58 commit 56bc3b1

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed
 

‎src/js/routes/Ballot/Candidate.jsx

+13-8
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ import StarAction from '../../components/StarAction';
1212
export default class Candidate extends Component {
1313
static propTypes = {
1414
//history: PropTypes.func.isRequired,
15+
history: PropTypes.string,
16+
oppose_on: PropTypes.boolean,
1517
params: PropTypes.object.isRequired,
18+
support_on: PropTypes.boolean
1619
};
1720

1821
constructor(props) {
@@ -41,8 +44,8 @@ export default class Candidate extends Component {
4144
}
4245

4346
return (
44-
<section className="candidate">
45-
<div className='candidate-detail-route'>
47+
<section className="candidate well well-90 gutter-top--small">
48+
<div className="candidate-detail-route list-group-item">
4649
{/*
4750
<header className="row">
4851
<div className="col-xs-6 col-md-6 text-center">
@@ -97,14 +100,16 @@ export default class Candidate extends Component {
97100
Courtesy of Ballotpedia.org */}
98101
</div>
99102
</div>
100-
<div className="col-xs-8">
101-
<div>Running for <span className="running-for-office-emphasis">{ candidate.office_display_name }</span></div>
102-
<ItemActionBar2 we_vote_id={candidate.we_vote_id}
103-
is_support={candidate.is_support} is_oppose={candidate.is_oppose}
104-
supportCount={candidate.supportCount} opposeCount={candidate.opposeCount} />
103+
<div className="row" style={{ "paddingBottom": "10" }}>
104+
<div className="col-xs-8">
105+
<div>Running for <span className="running-for-office-emphasis">{ candidate.office_display_name }</span></div>
106+
</div>
105107
</div>
108+
<ItemActionBar2 we_vote_id={candidate.we_vote_id}
109+
is_support={candidate.is_support} is_oppose={candidate.is_oppose}
110+
supportCount={candidate.supportCount} opposeCount={candidate.opposeCount} />
106111
</div>
107-
<div className="container-fluid well well-90">
112+
<div className="container-fluid well-90">
108113
{/* Post privately box */}
109114
{/*
110115
<ul className="list-group">

‎src/sass/base/_base.scss

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ html {
77
box-sizing: border-box;
88
}
99

10+
#app {
11+
height: 100%;
12+
}
13+
1014
*, *::before, *::after {
1115
box-sizing: inherit;
1216
}

‎src/sass/components/_itemActionbar.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.item-actionbar {
1+
.item-actionbar, .item-actionbar2 {
22
border-top: 1px solid #DDD;
33
padding:10px 5px;
44

0 commit comments

Comments
 (0)
Please sign in to comment.