diff options
author | 2023-05-01 13:44:30 +0200 | |
---|---|---|
committer | 2023-05-01 13:44:30 +0200 | |
commit | 3f6c8f0eddc51798d62c9011e5179f6cc497e88e (patch) | |
tree | 0cff0b5c119d884d99905c70a9170c5735658a90 | |
parent | daf2cf028594e10250a4cb386d6400bd8a57cf30 (diff) | |
download | it-tools-3f6c8f0eddc51798d62c9011e5179f6cc497e88e.tar.gz it-tools-3f6c8f0eddc51798d62c9011e5179f6cc497e88e.tar.zst it-tools-3f6c8f0eddc51798d62c9011e5179f6cc497e88e.zip |
fix(home): prevent weird blue border on card
-rw-r--r-- | src/components/ToolCard.vue | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/ToolCard.vue b/src/components/ToolCard.vue index c0f8581..64dc113 100644 --- a/src/components/ToolCard.vue +++ b/src/components/ToolCard.vue @@ -55,6 +55,7 @@ a { .tool-card { transition: border-color ease 0.5s; border-width: 2px !important; + color: transparent; &:hover { border-color: v-bind('appTheme.primary.colorHover'); |