Skip to content

Commit

Permalink
pushes
Browse files Browse the repository at this point in the history
  • Loading branch information
ahqsoftwares committed Aug 10, 2022
1 parent ba24f50 commit 2f8c017
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ahq-store-tauri",
"version": "0.3.1",
"version": "0.3.2",
"private": true,
"license": "ISC",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ahq-store-app"
version = "0.3.1"
version = "0.3.2"
description = "AHQ Store on Tauri and Rust"
authors = ["AHQ Softwares"]
license = "ISC"
Expand Down
24 changes: 14 additions & 10 deletions src/app/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Navigation
}
.nav-d {
transition: all 1s linear;
background-color: white;
background-color: gray;
}

/*
Expand All @@ -39,21 +39,25 @@ Item pallete
}

.n-item-s:active, .n-item-s:hover {
border: 10px solid inherit;
border-radius: 50%;
cursor: pointer;
border-width: 9px;
border-style: solid;
border-radius: 30%;
@apply border-orange-400
}

.n-item:active, .n-item:focus, .active {
@apply text-white;
border: 10px solid inherit;
border-radius: 45%;
cursor: pointer;
@apply text-white;
border-width: 9px;
border-style: solid;
border-radius: 30%;
@apply border-orange-400
}

.n-item:hover {
border: 9px solid inherit;
border-radius: 30%;
border-width: 9px;
border-style: solid;
border-radius: 30%;
@apply border-orange-400
}

/*
Expand Down

0 comments on commit 2f8c017

Please sign in to comment.