20 lines
306 B
CSS
20 lines
306 B
CSS
a:focus,
|
|
button:focus {
|
|
outline: red solid 1px;
|
|
@apply outline-1 outline-offset-8;
|
|
outline-radius: 50px;
|
|
/* border-radius: 10px; */
|
|
}
|
|
|
|
.focus-text {
|
|
@apply outline outline-offset-2 outline-1 outline-secondary rounded-sm;
|
|
}
|
|
|
|
p,
|
|
ul,
|
|
ol {
|
|
a:focus {
|
|
@apply focus-text;
|
|
}
|
|
}
|