Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
whats-open-web
Commits
c5043f69
Commit
c5043f69
authored
Nov 24, 2017
by
Mattias J Duffy
Browse files
fixed scss not updating
parent
6e765585
Pipeline
#1783
passed with stage
in 1 minute and 40 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
c5043f69
...
...
@@ -25,3 +25,4 @@ yarn-error.log*
/.storybook
/src/stories
/src/styles/whatsOpen.css
/src/styles/build
package.json
View file @
c5043f69
...
...
@@ -32,7 +32,7 @@
},
"proxy"
:
"http://localhost:3001"
,
"scripts"
:
{
"build-css"
:
"node-sass-chokidar src/styles/
whatsOpen.scss
-o src/styles/"
,
"build-css"
:
"node-sass-chokidar src/styles/ -o src/styles/
build
"
,
"watch-css"
:
"npm run build-css --watch --recursive"
,
"start-js"
:
"react-scripts start"
,
"start"
:
"npm-run-all -p watch-css start-js"
,
...
...
src/index.js
View file @
c5043f69
...
...
@@ -11,7 +11,7 @@ import ReduxThunk from 'redux-thunk';
import
reducers
from
'
./reducers/index
'
;
import
{
MuiThemeProvider
}
from
'
material-ui/styles
'
;
import
theme
from
'
./theme
'
;
import
'
./styles/whatsOpen.css
'
;
import
'
./styles/
build/
whatsOpen.css
'
;
// Create a history of your choosing (we're using a browser history in this case)
const
history
=
createHistory
();
...
...
src/styles/components/favoriteButton.scss
View file @
c5043f69
@import
'../_variables.scss'
;
.favorite-button-heart
{
position
:
absolute
;
top
:
0
;
...
...
src/styles/components/sidebar.scss
View file @
c5043f69
@import
'../_variables.scss'
;
@import
'../_mixins.scss'
;
.sidebar-label-row
{
display
:
flex
;
}
...
...
src/styles/containers/facilityCard.scss
View file @
c5043f69
@import
'../_variables.scss'
;
.fc-root
{
width
:
250px
;
border-radius
:
5px
!
important
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment