bump beta v0.0.45

This commit is contained in:
neil molina 2023-04-27 18:17:58 +08:00
parent 0c76b29787
commit d1facff675
2 changed files with 14 additions and 9 deletions

View file

@ -1,6 +1,6 @@
{
"name": "tea",
"version": "0.0.44",
"version": "0.0.45",
"private": true,
"description": "tea gui app",
"author": "tea.xyz",

View file

@ -17,10 +17,11 @@
>
<ul class="text-gray flex h-10 gap-1 pl-20 align-middle items-center leading-10">
<a href="/?tab=all">
<div class="home-btn w-12 rounded-md text-center text-xl transition-all">
<i class="icon-tea-logo-iconasset-1" />
<div class="home-btn w-12 text-center text-2xl transition-all">
<i class="icon-tea-logo-iconasset-1 transition-all" />
</div>
</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"
><i class="icon-arrow-left" /></button
>
@ -61,18 +62,22 @@
box-sizing: border-box;
}
.home-btn {
height: 40px;
width: 40px;
line-height: 40px;
height: 46px;
width: 46px;
line-height: 46px;
padding-left: 3px;
background-color: rgba(34, 34, 34, 1);
}
.home-btn:hover {
background-size: cover;
background-position: center center;
background-image: url("/images/gradient-bg.png");
color: #222222;
}
.home-btn:hover {
color: white;
}
p {
font-size: 10px;
}
ul button {
pointer-events: none;
}