22 lines
358 B
CSS
22 lines
358 B
CSS
a:focus,
|
|
button:focus {
|
|
outline: black solid 1px;
|
|
@apply outline-primary outline-offset-8;
|
|
/* border-radius: 10px; */
|
|
/* outline-width: 6px !important; */
|
|
}
|
|
|
|
.focus-text {
|
|
outline: black solid 1px;
|
|
|
|
@apply outline outline-offset-2 outline-1 outline-primary rounded-sm;
|
|
}
|
|
|
|
p,
|
|
ul,
|
|
ol {
|
|
a:focus {
|
|
@apply focus-text;
|
|
}
|
|
}
|