1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-18 00:13:16 +00:00

back to sass

This commit is contained in:
Kyle Spearrin
2019-04-02 23:41:17 -04:00
parent 18f659de7b
commit 53aaf7caa8
11 changed files with 646 additions and 409 deletions

View File

@@ -0,0 +1,3 @@
__Label, __Entry, __Editor {
font-size: 16;
}

3
src/App/Sass/dark.scss Normal file
View File

@@ -0,0 +1,3 @@
__contentpage {
background-color: gray;
}

3
src/App/Sass/ios.scss Normal file
View File

@@ -0,0 +1,3 @@
__Label, __Entry, __Editor {
font-size: 14;
}

14
src/App/Sass/styles.scss Normal file
View File

@@ -0,0 +1,14 @@
@import "variables.scss";
__ContentPage {
background-color: $white;
}
StackLayout.list-cell {
padding: 10;
-xf-orientation: horizontal;
}
StackLayout.list-cell > FaLabel {
font-size: 22;
}

View File

@@ -0,0 +1 @@
$white: #FFFFFF;