Skip to content
This repository was archived by the owner on May 19, 2025. It is now read-only.

Commit b9ac13f

Browse files
committed
change css ext to scss
1 parent 6f8e359 commit b9ac13f

File tree

9 files changed

+9
-6
lines changed

9 files changed

+9
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"prebuild": "rm -rf dist/* & rm -rf demo/dist/*",
99
"build": "NODE_ENV=production & yarn build-library & yarn build-demo",
1010
"build-demo": "webpack -p",
11-
"build-library": "babel ./src --out-dir ./dist --ignore test.js & postcss 'src/styles.css' -d dist & postcss 'src/theme/*.css' -d 'dist/theme'",
11+
"build-library": "babel ./src --out-dir ./dist --ignore test.js & postcss 'src/styles.scss' -d dist & postcss 'src/theme/*.scss' -d 'dist/theme'",
1212
"lint": "eslint 'src/**/*.js'",
1313
"test": "jest"
1414
},
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/styles.css

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/styles.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@import 'calendar.scss';
2+
@import 'dateRange.scss';
3+
@import 'dayCell.scss';
4+
@import 'dateRangePicker.scss';
5+
@import 'definedRanges.scss';
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
font-weight: 600;
4545
select{
4646
appearance: none;
47+
-webkit-appearance: none;
4748
border: 0;
4849
background: transparent;
4950
padding: 10px 30px 10px 10px;
@@ -325,9 +326,11 @@
325326
text-align: center;
326327
border: solid 1px rgb(222, 231, 235);
327328
margin-right: 10px;
329+
color: rgb(108, 118, 122);
328330
&:focus, &:hover{
329331
border-color: rgb(180, 191, 196);
330332
outline: 0;
333+
color: #333;
331334
}
332335
}
333336

0 commit comments

Comments
 (0)