Skip to content

Commit

Permalink
Try to make theming work
Browse files Browse the repository at this point in the history
  • Loading branch information
sqrd-max committed Oct 30, 2024
1 parent 00dfbfc commit a1311f1
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
flex-direction: row;
align-items: center;
min-height: 50px;
//background-color: #2e2e2e;
border-bottom: 1px solid #1c1c1c;
box-sizing: border-box;
}

Expand All @@ -41,7 +39,6 @@

.central-pane {
flex: 1;
//background-color: #424242;
overflow: auto;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
padding: 5px 10px;
font-size: 12px;
border: 1px solid rgba(88, 88, 88, 0.08);
box-shadow: var(--phoenix-icon-shadow);
background-color: var(--phoenix-background-color-tertiary);
color: var(--phoenix-text-color-secondary);
box-shadow: var(--icon-shadow);
background-color: var(--tertiary-background-color);
color: var(--secondary-text-color);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
}
}
}
.menu-toggle-icon{
color: var(--text-color);
transition: background-color 0.3s, color 0.3s;
}

.button_theme:hover {
color: var(--accent-color);
}
//.menu-toggle-icon{
// color: var(--text-color);
// transition: background-color 0.3s, color 0.3s;
//}
//
//.button_theme:hover {
// color: var(--accent-color);
//}
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
display: flex;
align-items: center;
justify-content: center;
color: var(--text-color);
//background-color: #2e2e2e;
flex-wrap: wrap;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ export class MainDisplayComponent implements OnInit, AfterViewInit {
private beamAnimationTime: number = 1000;

isLeftPaneOpen: boolean = false;
isDarkTheme = false;

isPhoenixMenuOpen: boolean = false;
isSmallScreen: boolean = window.innerWidth < 768;
Expand Down

0 comments on commit a1311f1

Please sign in to comment.