Skip to content

Commit 5b6e199

Browse files
authored
Update styles and remove redundant env var (#4)
1 parent 4736d9a commit 5b6e199

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.env.example

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ MB_EMBEDDING_SECRET_KEY="<static_embedding_secret>"
55
MB_ADMIN_EMAIL="rene@example.com"
66
MB_ADMIN_FIRST_NAME="Rene"
77
MB_ADMIN_LAST_NAME="Descartes"
8-
MB_ADMIN_PASSWORD="foobarbaz"
98
MB_DASHBOARD_ID_TO_EMBED=1

server.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ const getPageLayout = (config, component, currentPath) => {
3434
html, body { height: 100%; margin: 0; overflow: hidden; }
3535
body { display: flex; flex-direction: column; }
3636
nav { padding: 1rem; background: #f0f0f0; }
37-
nav a { margin-right: 1rem; }
38-
nav a.active { font-weight: bold; }
37+
nav a { margin-right: 1rem; text-decoration: none; color: #555; padding: 0.25rem 0.5rem; border-radius: 4px; }
38+
nav a:hover { background: #e0e0e0; }
39+
nav a.active { font-weight: bold; background: #509EE3; color: white; }
3940
main { flex: 1; }
4041
metabase-dashboard { width: 100%; height: 100%; }
4142
</style>

0 commit comments

Comments
 (0)