-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathapp.scss
More file actions
74 lines (60 loc) · 1.19 KB
/
app.scss
File metadata and controls
74 lines (60 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// Import the theme’s variables. If you’re using a color scheme
// other than “light”, switch the path to the alternative scheme,
// for example '~@nativescript/theme/scss/dark'.
@import '~@nativescript/theme/core';
@import '~@nativescript/theme/default';
@import '~/assets/css/font-awesome.scss';
.fa {
font-family: FontAwesome, fontawesome-webfont;
}
@import './app-vars.css';
FlexboxLayout {
padding: 0 12;
}
.ns-root FlexboxLayout > Button {
width: 33%;
flex: 1;
margin-left: 2;
margin-right: 2;
}
#login-background {
margin-top: -20;
background-size: cover;
background-position: center;
}
/* Login page Styling */
.login-wrap {
padding: 0 40;
}
.logo-wrap {
margin: 60 0 10 0 ;
padding: 20 0;
.login-logo {
text-align: center;
font-size: 30;
font-weight: bold;
margin-bottom: 10;
color: $primary;
opacity: .9;
}
.login-logo-sub {
color: $primary;
opacity: .8;
text-align: center;
}
}
.login-wrapper {
padding: 20;
background-color: #fff;
border-radius: 3;
TextField {
padding: 10 10;
margin: 10 0 0 0;
}
}
.go-back {
font-size: 14;
text-align: center;
color: $primary;
margin-top: 10;
}