Don't show outline on an anchor tag that doesn't have a href

This commit is contained in:
George Drummond
2019-02-15 15:46:18 -05:00
parent 441125d197
commit 5d371c62b2

View File

@@ -50,3 +50,7 @@
@import 'sections/member_edit';
@import 'sections/reports';
@import 'sections/task_order';
a:focus:not([href]) {
outline: none;
}