0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-25 01:02:47 +00:00

Small bugs

This commit is contained in:
Trevor Buckner
2021-03-06 01:49:07 -05:00
parent 6d97eb308e
commit a1bf8ca945
3 changed files with 3 additions and 2 deletions

View File

@@ -45,6 +45,7 @@ const Homebrew = createClass({
<Route path='/edit/:id' component={(routeProps)=><EditPage id={routeProps.match.params.id} brew={this.props.brew} />}/>
<Route path='/share/:id' component={(routeProps)=><SharePage id={routeProps.match.params.id} brew={this.props.brew} />}/>
<Route path='/new/:id' component={(routeProps)=><NewPage id={routeProps.match.params.id} brew={this.props.brew} />}/>
<Route path='/new' exact component={NewPage}/>
<Route path='/user/:username' component={(routeProps)=><UserPage username={routeProps.match.params.username} brews={this.props.brews} />}/>
<Route path='/print/:id' component={(routeProps)=><PrintPage brew={this.props.brew} query={queryString.parse(routeProps.location.search)} /> } />
<Route path='/print' exact component={(routeProps)=><PrintPage query={queryString.parse(routeProps.location.search)} /> } />

View File

@@ -5,7 +5,7 @@ module.exports = function(props){
return <Nav.item
href='/new'
color='purple'
icon='fa-plus-square'>
icon='fas fa-plus-square'>
new
</Nav.item>;
};

View File

@@ -1,7 +1,7 @@
/* Main Font, serif */
@font-face {
font-family: BookSanity;
src: url('../fonts/legacy/Download2.woff2');
src: url('../fonts/legacy/Bookinsanity.woff2');
font-weight: normal;
font-style: normal;
}