Hide default outline
This commit is contained in:
parent
88800a938e
commit
0e52338b1f
1 changed files with 7 additions and 1 deletions
|
@ -9,6 +9,7 @@ body {
|
||||||
font-family: 'Roboto Flex Variable', sans-serif;
|
font-family: 'Roboto Flex Variable', sans-serif;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
max-width: 1200px;
|
max-width: 1200px;
|
||||||
|
padding: 0px 24px;
|
||||||
|
|
||||||
// Elements
|
// Elements
|
||||||
a {
|
a {
|
||||||
|
@ -21,7 +22,12 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
* {cursor: var(--default-cursor)}
|
* {
|
||||||
|
cursor: var(--default-cursor);
|
||||||
|
&:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
a, button, a > * {cursor: var(--pointer-cursor) !important}
|
a, button, a > * {cursor: var(--pointer-cursor) !important}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue