minor style fix
This commit is contained in:
@ -57,7 +57,7 @@ function FormWithGpx (props) {
|
||||
gpxLimit} files max):
|
||||
<input
|
||||
accept=".gpx, .zip"
|
||||
className="form-control input-lg"
|
||||
className="form-control form-control-file gpx-file"
|
||||
disabled={loading}
|
||||
name="gpxFile"
|
||||
required
|
||||
@ -95,7 +95,7 @@ function FormWithGpx (props) {
|
||||
<input
|
||||
type="submit"
|
||||
className="btn btn-secondary btn-lg btn-block"
|
||||
onClick={() => history.go(-1)}
|
||||
onClick={() => history.push('/')}
|
||||
value="Cancel"
|
||||
/>
|
||||
</div>
|
||||
|
@ -123,7 +123,7 @@ function FormWithoutGpx (props) {
|
||||
<input
|
||||
type="submit"
|
||||
className="btn btn-secondary btn-lg btn-block"
|
||||
onClick={() => history.go(-1)}
|
||||
onClick={() => history.push('/')}
|
||||
value="Cancel"
|
||||
/>
|
||||
</form>
|
||||
|
@ -228,6 +228,10 @@ label {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.gpx-file {
|
||||
height: inherit;
|
||||
}
|
||||
|
||||
.huge {
|
||||
font-size: 25px;
|
||||
}
|
||||
@ -302,6 +306,10 @@ label {
|
||||
max-height: 45px;
|
||||
}
|
||||
|
||||
.timezone-custom-height {
|
||||
height: calc(2.25rem + 14px);
|
||||
}
|
||||
|
||||
.timezone-picker {
|
||||
padding: 0;
|
||||
}
|
||||
|
@ -173,7 +173,6 @@ class ProfileEdit extends React.Component {
|
||||
name="bio"
|
||||
className="form-control input-lg"
|
||||
maxLength="200"
|
||||
type="text"
|
||||
value={formData.bio}
|
||||
onChange={e => this.handleFormChange(e)}
|
||||
/>
|
||||
@ -183,7 +182,7 @@ class ProfileEdit extends React.Component {
|
||||
<label>
|
||||
Timezone:
|
||||
<TimezonePicker
|
||||
className="form-control"
|
||||
className="form-control timezone-custom-height"
|
||||
onChange={tz => {
|
||||
const e = { target:
|
||||
{
|
||||
|
Reference in New Issue
Block a user