Skip to content

Commit 89ec461

Browse files
committed
Front-end bootstrap4 compliant
1 parent 37980b6 commit 89ec461

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

app/styles/components/bulletin-navigator.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
position: absolute;
55
z-index: 100;
66

7+
a, a:hover, a:visited, a:not([href]) {
8+
color: $white;
9+
text-decoration: none;
10+
}
11+
712
.nav-button {
813
background: rgb(0, 0, 0); /* Fall-back for browsers that don't support rgba */
914
background: rgba(0, 0, 0, .5);
1015
padding: $padding-m;
11-
12-
&, &:hover {
13-
color: $white;
14-
text-decoration: none;
15-
}
1616
}
1717

1818
@media only screen and (min-width: $large-device-break) {

mirage/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Mirage from "ember-cli-mirage";
22

33
export default function() {
44
this.post("/api/auth/sign_in", function(schema, request) {
5-
const user = schema.users.find(1);
5+
const user = schema.db.users.find(1);
66
return new Mirage.Response(
77
200,
88
{ "access-token": "adssafsdafsdsfd", "client": "asdfasdfasafs", "uid": "[email protected]" },

0 commit comments

Comments
 (0)