Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<app-dark-theme class="home-theme-toggle"></app-dark-theme>

<div class="container">
<div class="pricing-header p-3 pt-md-5 pb-md-4 text-center">
<img
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
.home-theme-toggle {
position: fixed;
top: 0.75rem;
right: 0.75rem;
z-index: 10000;
}

h1 {
font-family: 'Circular';
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<a id="mainLogo" class="main-logo fixed-top p-2 mx-auto mt-2" routerLink="/">
<img src="assets/images/logo-text.svg" />
<a
id="mainLogo"
class="main-logo fixed-top p-2 mx-auto mt-2"
routerLink="/"
aria-label="Phoenix home"
>
<img src="assets/images/logo-text.svg" alt="Phoenix logo" />
</a>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<app-menu-toggle
tooltip="Dark theme"
tooltip="Switch Dark/Light theme"
[active]="darkTheme"
icon="dark"
(click)="setDarkTheme()"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<div id="uiMenu">
<button
id="hideUIMenu"
type="button"
aria-label="Toggle toolbar visibility"
[matTooltip]="hideUIMenu ? 'Show toolbar' : 'Hide toolbar'"
matTooltipPosition="above"
(click)="hideUIMenu = !hideUIMenu"
Expand Down
Loading