File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 8
8
text-shadow : 0 0 $size black , 0 0 $size black , 0 0 $size black , 0 0 $size black ;
9
9
}
10
10
11
- @mixin focus-visible {
11
+ @mixin focus-visible ($additionalShadow : null) {
12
+ outline : none ;
12
13
& :not ([disabled ])[data-focus-visible-added ] {
13
14
box-shadow : 0px 0px 0px 1px var (--white-faded );
14
15
}
Original file line number Diff line number Diff line change @@ -12,7 +12,9 @@ const store = useStore()
12
12
<nav class =" nav" >
13
13
<div class =" upper" >
14
14
<img
15
+ class =" nav-logo"
15
16
role =" button"
17
+ tabindex =" 0"
16
18
width =" 30"
17
19
height =" 30"
18
20
title =" Go to Gitification repository"
@@ -79,4 +81,16 @@ const store = useStore()
79
81
margin-top : auto ;
80
82
}
81
83
}
84
+
85
+ .nav-logo {
86
+ opacity : .8 ;
87
+ @include focus-visible ;
88
+ border :1px solid black ;
89
+ border-radius : 50% ;
90
+
91
+ & :hover ,
92
+ & :active {
93
+ opacity : 1 ;
94
+ }
95
+ }
82
96
</style >
You can’t perform that action at this time.
0 commit comments