Skip to content
Snippets Groups Projects
Commit 5e7b29c3 authored by Jure's avatar Jure
Browse files

Merge branch 'more_css_modules' into 'master'

Add styles.logo and styles.signup and styles.passwordReset 'hooks' for themeing

See merge request !108
parents 1714a75d 6e2acbb2
No related branches found
No related tags found
1 merge request!108Add styles.logo and styles.signup and styles.passwordReset 'hooks' for themeing
Pipeline #3104 passed with stage
in 12 minutes and 30 seconds
......@@ -4,6 +4,7 @@ import PropTypes from 'prop-types'
import { Grid, Row, Col, Alert, FormGroup, ControlLabel, Button, FormControl } from 'react-bootstrap'
import queryString from 'query-string'
import * as api from 'pubsweet-client/src/helpers/api'
import styles from './PasswordReset.local.scss'
class PasswordReset extends React.Component {
constructor (props) {
......@@ -212,7 +213,7 @@ class PasswordReset extends React.Component {
<Grid>
<Row>
<Col md={2} mdOffset={5}>
<img src="/assets/pubsweet-rgb-small.jpg" className="auth-logo" alt="pubsweet-logo" style={{maxWidth: '100%'}}/>
<img src="/assets/pubsweet-rgb-small.jpg" className={styles.logo} alt="pubsweet-logo" style={{maxWidth: '100%'}}/>
</Col>
</Row>
......@@ -222,7 +223,7 @@ class PasswordReset extends React.Component {
{buildError(passwordErrorMessage)}
</Col>
<Col xs={12} md={4}>
<Col xs={12} md={4} className={styles.passwordReset}>
<h1>Password reset</h1>
{buildForm()}
......
......@@ -20,7 +20,7 @@ export default class Signup extends Component {
<Grid>
<Row>
<Col md={2} mdOffset={5}>
<img src="/assets/pubsweet-rgb-small.jpg" className="auth-logo" alt="pubsweet-logo" style={{maxWidth: '100%'}}/>
<img src="/assets/pubsweet-rgb-small.jpg" className={styles.logo} alt="pubsweet-logo" style={{maxWidth: '100%'}}/>
</Col>
</Row>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment