Browse code

Created repository.

DoubleBastionAdmin authored on 02/03/2022 00:26:46
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,9 @@
1
+// WebKit-style focus
2
+
3
+.tab-focus() {
4
+  // Default
5
+  outline: thin dotted;
6
+  // WebKit
7
+  outline: 5px auto -webkit-focus-ring-color;
8
+  outline-offset: -2px;
9
+}