29 lines
629 B
SCSS
29 lines
629 B
SCSS
// Common/Global Styles
|
|
// Use this file for global styles that don't or won't have their own stylesheet
|
|
body {
|
|
font-size: 16px;
|
|
background-color: #fff;
|
|
|
|
.container-fluid {
|
|
max-width: 576px; //Remove once desktop app is complete
|
|
&.container-shadow {
|
|
box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.15); //Use instead of Bootstrap's helper
|
|
}
|
|
}
|
|
a {
|
|
color: $blue;
|
|
text-decoration: none;
|
|
border-bottom: 1px solid $blue;
|
|
&:hover {
|
|
color: $blue-400;
|
|
}
|
|
}
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
.container,
|
|
.container-fluid {
|
|
overflow-x: hidden;
|
|
}
|
|
}
|
|
// Hide horizontal scrollbar
|