Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
whats-open-web
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
11
Issues
11
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
SRCT
whats-open-web
Commits
c5043f69
Commit
c5043f69
authored
Nov 24, 2017
by
Mattias J Duffy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
6 changed files
with
10 additions
and
2 deletions
+10
-2
.gitignore
.gitignore
+1
-0
package.json
package.json
+1
-1
src/index.js
src/index.js
+1
-1
src/styles/components/favoriteButton.scss
src/styles/components/favoriteButton.scss
+2
-0
src/styles/components/sidebar.scss
src/styles/components/sidebar.scss
+3
-0
src/styles/containers/facilityCard.scss
src/styles/containers/facilityCard.scss
+2
-0
No files found.
.gitignore
View file @
c5043f69
...
@@ -25,3 +25,4 @@ yarn-error.log*
...
@@ -25,3 +25,4 @@ yarn-error.log*
/.storybook
/.storybook
/src/stories
/src/stories
/src/styles/whatsOpen.css
/src/styles/whatsOpen.css
/src/styles/build
package.json
View file @
c5043f69
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
},
},
"proxy"
:
"http://localhost:3001"
,
"proxy"
:
"http://localhost:3001"
,
"scripts"
:
{
"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"
,
"watch-css"
:
"npm run build-css --watch --recursive"
,
"start-js"
:
"react-scripts start"
,
"start-js"
:
"react-scripts start"
,
"start"
:
"npm-run-all -p watch-css start-js"
,
"start"
:
"npm-run-all -p watch-css start-js"
,
...
...
src/index.js
View file @
c5043f69
...
@@ -11,7 +11,7 @@ import ReduxThunk from 'redux-thunk';
...
@@ -11,7 +11,7 @@ import ReduxThunk from 'redux-thunk';
import
reducers
from
'
./reducers/index
'
;
import
reducers
from
'
./reducers/index
'
;
import
{
MuiThemeProvider
}
from
'
material-ui/styles
'
;
import
{
MuiThemeProvider
}
from
'
material-ui/styles
'
;
import
theme
from
'
./theme
'
;
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)
// Create a history of your choosing (we're using a browser history in this case)
const
history
=
createHistory
();
const
history
=
createHistory
();
...
...
src/styles/components/favoriteButton.scss
View file @
c5043f69
@import
'../_variables.scss'
;
.favorite-button-heart
{
.favorite-button-heart
{
position
:
absolute
;
position
:
absolute
;
top
:
0
;
top
:
0
;
...
...
src/styles/components/sidebar.scss
View file @
c5043f69
@import
'../_variables.scss'
;
@import
'../_mixins.scss'
;
.sidebar-label-row
{
.sidebar-label-row
{
display
:
flex
;
display
:
flex
;
}
}
...
...
src/styles/containers/facilityCard.scss
View file @
c5043f69
@import
'../_variables.scss'
;
.fc-root
{
.fc-root
{
width
:
250px
;
width
:
250px
;
border-radius
:
5px
!
important
;
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