mirror of
https://github.com/ivabus/gui
synced 2025-06-08 00:00:27 +03:00
bump beta v0.0.45
This commit is contained in:
parent
0c76b29787
commit
d1facff675
2 changed files with 14 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "tea",
|
"name": "tea",
|
||||||
"version": "0.0.44",
|
"version": "0.0.45",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "tea gui app",
|
"description": "tea gui app",
|
||||||
"author": "tea.xyz",
|
"author": "tea.xyz",
|
||||||
|
|
|
@ -17,10 +17,11 @@
|
||||||
>
|
>
|
||||||
<ul class="text-gray flex h-10 gap-1 pl-20 align-middle items-center leading-10">
|
<ul class="text-gray flex h-10 gap-1 pl-20 align-middle items-center leading-10">
|
||||||
<a href="/?tab=all">
|
<a href="/?tab=all">
|
||||||
<div class="home-btn w-12 rounded-md text-center text-xl transition-all">
|
<div class="home-btn w-12 text-center text-2xl transition-all">
|
||||||
<i class="icon-tea-logo-iconasset-1" />
|
<i class="icon-tea-logo-iconasset-1 transition-all" />
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
<p class="text-gray px-2">beta</p>
|
||||||
<button on:click={navStore.back} class:active={$prevPath} class="pt-1 px-2 h-[28px] text-xs rounded-sm transition-all opacity-50 hover:bg-gray hover:text-black" title="go back"
|
<button on:click={navStore.back} class:active={$prevPath} class="pt-1 px-2 h-[28px] text-xs rounded-sm transition-all opacity-50 hover:bg-gray hover:text-black" title="go back"
|
||||||
><i class="icon-arrow-left" /></button
|
><i class="icon-arrow-left" /></button
|
||||||
>
|
>
|
||||||
|
@ -61,18 +62,22 @@
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
.home-btn {
|
.home-btn {
|
||||||
height: 40px;
|
height: 46px;
|
||||||
width: 40px;
|
width: 46px;
|
||||||
line-height: 40px;
|
line-height: 46px;
|
||||||
padding-left: 3px;
|
padding-left: 3px;
|
||||||
background-color: rgba(34, 34, 34, 1);
|
|
||||||
}
|
|
||||||
.home-btn:hover {
|
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-position: center center;
|
background-position: center center;
|
||||||
background-image: url("/images/gradient-bg.png");
|
background-image: url("/images/gradient-bg.png");
|
||||||
color: #222222;
|
color: #222222;
|
||||||
}
|
}
|
||||||
|
.home-btn:hover {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 10px;
|
||||||
|
}
|
||||||
ul button {
|
ul button {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue