Skip to content

Commit

Permalink
🐛 Fix wall creation and dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
MarceauKa committed Jan 6, 2020
1 parent 773597b commit 0df8ebd
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion public/css/app.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"/js/app.js": "/js/app.js?id=6f63b11d01a2e9733520",
"/css/app.css": "/css/app.css?id=a8681014591223ee3f1b",
"/js/app.js": "/js/app.js?id=eb040d1d504d83be69a7",
"/css/app.css": "/css/app.css?id=41be1c43e2883e1a9789",
"/js/manifest.js": "/js/manifest.js?id=3c768977c2574a34506e",
"/js/vendor.js": "/js/vendor.js?id=d01e65db03bef4cabb61"
}
8 changes: 6 additions & 2 deletions resources/js/components/ManageWalls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<td>{{ listRestrictions(wall.restrict_cards) }}</td>
<td>
<div class="dropdown">
<button class="btn btn-outline-dark btn-sm dropdown-toggle"
<button class="btn btn-outline-secondary btn-sm dropdown-toggle"
type="button" id="dropdownMenuButton"
data-toggle="dropdown"
aria-haspopup="true"
Expand Down Expand Up @@ -228,7 +228,11 @@ export default {
slug: '',
restrict_tags: [],
restrict_cards: [],
appearance: [],
appearance: {
columns: 2,
show_tags: false,
compact: false,
},
is_default: false,
is_private: false,
};
Expand Down
8 changes: 8 additions & 0 deletions resources/sass/_dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ body.dark {
}
}

.nav-wall {
@extend .bg-dark;

h1 {
@extend .text-white;
}
}

.list-group {
.list-group-item:not(.active) {
@extend .bg-dark;
Expand Down

0 comments on commit 0df8ebd

Please sign in to comment.