core: Let's try some neutral colors to avoid clashing with app colors.

This commit is contained in:
Cory McWilliams 2025-01-18 21:56:43 -05:00
parent ac12e350bf
commit 11564a5292
3 changed files with 5 additions and 5 deletions

View File

@ -149,7 +149,7 @@ class TfNavigationElement extends LitElement {
<link type="text/css" rel="stylesheet" href="/static/w3.css" /> <link type="text/css" rel="stylesheet" href="/static/w3.css" />
<div class="w3-dropdown-click w3-right" style="max-width: 100%"> <div class="w3-dropdown-click w3-right" style="max-width: 100%">
<button <button
class="w3-button w3-rest w3-cyan" class="w3-button w3-rest"
style="text-overflow: ellipsis; overflow: hidden; white-space: nowrap; max-width: 100%" style="text-overflow: ellipsis; overflow: hidden; white-space: nowrap; max-width: 100%"
id="identity" id="identity"
@click=${self.toggle_id_dropdown} @click=${self.toggle_id_dropdown}

View File

@ -38,8 +38,8 @@
style=" style="
display: flex; display: flex;
flex-flow: column; flex-flow: column;
width: 100vw; width: 100%;
height: 100vh; height: 100%;
position: absolute; position: absolute;
max-width: 100%; max-width: 100%;
max-height: 100%; max-height: 100%;

View File

@ -7,8 +7,8 @@ html {
body { body {
font-family: monospace; font-family: monospace;
background-color: #002b36; background-color: #444;
color: #eee8d5; color: #fff;
width: 100%; width: 100%;
height: 100%; height: 100%;
padding: 0; padding: 0;