Skip to content

Commit

Permalink
fix: font (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
hmbanan666 authored Dec 12, 2024
1 parent 82226b6 commit 2705c11
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion apps/telegram-game/src/assets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@
padding-top: var(--tg-content-safe-area-inset-top);
}
@utility tg-content-safe-area {
padding-top: var(--tg-content-safe-area-inset-top);
padding-top: 100px;
padding-bottom: 200px;
}
2 changes: 1 addition & 1 deletion apps/website/app/layouts/default.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="app font-serif" :class="{ overflow: !isFeedOpened }">
<div class="app" :class="{ overflow: !isFeedOpened }">
<div class="content">
<ActiveStreamBanner />
<MainHeader />
Expand Down
17 changes: 10 additions & 7 deletions apps/website/app/pages/(games)/wagon/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,13 @@ onMounted(async () => {
height: 350px;
overflow: hidden;
position: relative;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans;
}
#game-canvas {
width: 100%;
height: 250px;
bottom: 80px;
bottom: 40px;
position: absolute;
overflow: hidden;
}
Expand All @@ -64,7 +65,7 @@ onMounted(async () => {
bottom: 0;
left: 0;
width: 100%;
height: 80px;
height: 40px;
background-color: #450a0a;
color: #450a0a;
/* selection remove */
Expand All @@ -80,14 +81,16 @@ onMounted(async () => {
height: auto;
position: relative;
margin-top: -200px;
padding: 16px 2px 8px;
background-color: #eef2ff;
border-radius: 6px;
padding: 6px 2px 8px;
background-color: #450a0a;
border-radius: 0 14px 0 0;
}
.cards {
padding: 4px 12px 0;
height: 68px;
padding: 0 0 6px;
height: 64px;
position: absolute;
bottom: 0;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
Expand Down
Binary file modified apps/website/public/qr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2705c11

Please sign in to comment.