Skip to content

Commit

Permalink
Add gradient to Analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
yusufsallam64 committed Oct 18, 2023
1 parent e2e1fae commit d9db6bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/elements/pages/dev/game/pages/game-overview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -292,10 +292,10 @@ export default class DevGameOverview extends LitElement {

renderAnalytics(game: cloud.GameFull): TemplateResult {
return html`
<div class="w-1/2">
<div class="w-1/2 ">
<h1 class="text-xl pb-4">Analytics</h1>
<div
class="flex flex-row space-x-4 w-full h-80 bg-zinc-600/30 place-content-center rounded-lg"
class="flex flex-row space-x-4 w-full h-80 bg-zinc-600/30 place-content-center rounded-lg bg-[radial-gradient(ellipse_at_top_left,_var(--tw-gradient-stops))] from-fuchsia-600/25 via-fuchsia-900/40 to-fuchsia-700/75"
>
<h4 class="m-auto italic text-gray-300 text-lg">Coming Soon...</h4>
</div>
Expand Down
5 changes: 1 addition & 4 deletions src/elements/pages/dev/namespace/namespace-summary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ export default class DevNamespaceSummary extends LitElement {
return html`<stylized-button
class=""
id="visit-button"
right-icon="solid/arrow-right"
.href=${visitUrl}
>
Visit
Expand All @@ -182,7 +181,7 @@ export default class DevNamespaceSummary extends LitElement {
renderModules() {
return html`
<div class="pt-12">
<h3 class="text-xl text-slate-200">Configuration</h3>
<h3 class="text-xl text-slate-100 pb-4">Configuration</h3>
<dev-version-info
.game=${this.game}
.tiers=${this.tiers}
Expand Down Expand Up @@ -259,7 +258,6 @@ export default class DevNamespaceSummary extends LitElement {
<div class="flex flex-col space-y-2 ml-auto">
<stylized-button
class="mt-auto"
right-icon="solid/arrow-right"
href=${routes.devVersionSummary.build({
gameId: this.game.gameId,
namespaceId: this.namespaceId
Expand All @@ -268,7 +266,6 @@ export default class DevNamespaceSummary extends LitElement {
>
<stylized-button
class="w-full"
right-icon="solid/arrow-right"
.trigger=${this.showDeployVersionSteps.bind(this)}
>
New Version
Expand Down

0 comments on commit d9db6bd

Please sign in to comment.