10 changed files with 4389 additions and 1 deletions
@ -0,0 +1,3 @@ |
|||||||
|
^Label, ^Entry, ^Editor { |
||||||
|
font-size: 16; |
||||||
|
} |
||||||
@ -0,0 +1,3 @@ |
|||||||
|
^contentpage { |
||||||
|
background-color: gray; |
||||||
|
} |
||||||
@ -0,0 +1,3 @@ |
|||||||
|
^Label, ^Entry, ^Editor { |
||||||
|
font-size: 14; |
||||||
|
} |
||||||
@ -0,0 +1,14 @@ |
|||||||
|
@import "variables.less"; |
||||||
|
|
||||||
|
^ContentPage { |
||||||
|
background-color: @white; |
||||||
|
} |
||||||
|
|
||||||
|
StackLayout.list-cell { |
||||||
|
padding: 10; |
||||||
|
-xf-orientation: horizontal; |
||||||
|
} |
||||||
|
|
||||||
|
StackLayout.list-cell > FaLabel { |
||||||
|
font-size: 22; |
||||||
|
} |
||||||
@ -0,0 +1,16 @@ |
|||||||
|
const gulp = require('gulp'); |
||||||
|
const gulpLess = require('gulp-less'); |
||||||
|
const del = require('del'); |
||||||
|
|
||||||
|
function less() { |
||||||
|
return gulp.src(['./Less/android.less', './Less/ios.less', './Less/dark.less', './Less/styles.less']) |
||||||
|
.pipe(gulpLess()) |
||||||
|
.pipe(gulp.dest('./Css')); |
||||||
|
} |
||||||
|
|
||||||
|
function cleanCss() { |
||||||
|
return del('./Css'); |
||||||
|
} |
||||||
|
|
||||||
|
exports.cleanCss = cleanCss; |
||||||
|
exports.less = gulp.series(cleanCss, less); |
||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue