Skip to content

Commit 03c44e9

Browse files
Reducing the visibility of WebGAL tags
1 parent b019fcb commit 03c44e9

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

packages/webgal/index.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@
7171
</div>
7272
<div style="position: absolute;
7373
bottom: 1em;
74+
color:#999;
75+
font-size: 75%;
7476
display: flex;
7577
justify-content: center;
7678
width: 100%;
@@ -80,10 +82,6 @@
8082
Powered by <a href="https://github.com/OpenWebGAL/WebGAL"
8183
onclick="jump(event, 'https://github.com/OpenWebGAL/WebGAL')">WebGAL</a> Framework
8284
</div>
83-
<div>
84-
Made with ❤ by <a href="https://github.com/OpenWebGAL"
85-
onclick="jump(event, 'https://github.com/OpenWebGAL')">OpenWebGAL</a>
86-
</div>
8785
</div>
8886
</div>
8987
</div>

packages/webgal/src/UI/Menu/Options/System/System.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import useSoundEffect from '@/hooks/useSoundEffect';
1919
import savesReducer, { ISavesData, saveActions } from '@/store/savesReducer';
2020
import { dumpFastSaveToStorage, dumpSavesToStorage } from '@/Core/controller/storage/savesController';
2121
import { OptionSlider } from '@/UI/Menu/Options/OptionSlider';
22+
import { Info } from '@icon-park/react';
2223

2324
interface IExportGameData {
2425
userData: IUserData;
@@ -187,7 +188,7 @@ export function System() {
187188
/>
188189
</NormalOption>
189190
<div className={styles.About_title_text} onClick={toggleAbout}>
190-
<span className={styles.About_text}>{t('about.title')}</span>
191+
<Info theme="outline" size="32" fill="#227D515F" />
191192
</div>
192193
</>
193194
)}

packages/webgal/src/UI/Menu/Options/options.module.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,16 @@
7171
align-content: flex-start;
7272
flex-wrap: wrap;
7373
padding: 0 1em 0 1em;
74+
position: relative;
7475
}
7576

7677
.About_title_text {
7778
margin: 0.2em 1em 0.2em 1em;
7879
padding: 0.2em 0.2em 0.2em 0.2em;
79-
width: 100%;
80+
//width: 100%;
81+
position: absolute;
82+
top: 10px;
83+
right: 10px;
8084
animation: Elements_in ease-out 0.7s forwards;
8185
cursor: pointer;
8286
}

0 commit comments

Comments
 (0)