Skip to content

Commit eb238d5

Browse files
fixed styling on focus border
1 parent d4201f6 commit eb238d5

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

packages/cpt-ui/src/styles/card.scss

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,18 @@
2121
&:focus {
2222
outline: 3px solid #ffeb3b;
2323
outline-offset: 0;
24-
box-shadow: inset 0 -4px 0 0 #212b32;
2524
background-color: #ffeb3b;
25+
position: relative;
26+
27+
&::after {
28+
content: "";
29+
position: absolute;
30+
bottom: -4px;
31+
left: -4px;
32+
right: -4px;
33+
height: 4px;
34+
background-color: #212b32;
35+
}
2636

2737
.eps-card__org-name {
2838
text-decoration: none !important;

0 commit comments

Comments
 (0)